Skip to content

title: "vbmClear" description: TRSE built-in method (from IDE help)


vbmClear

Systems: VIC20
Parameters: b


vbmClear( [byte] );

  • [byte] - value to use to clear the bitmap.

Description

Clears the bitmap using the given value.

Example

vbmSetScreenMode( 0 ); vbmClear( 0 ); // clears the bitmap with empty pixels vbmClear( 255 ); // clears the bitmap with solid pixels