title: "vbmClearColor" description: TRSE built-in method (from IDE help)
vbmClearColor
Systems: VIC20
Parameters: b
vbmClearColor( [byte] );
- [byte] - value to use to clear the color memory.
Description
Clears the foreground colour memory with the given color value.
Example
vbmSetScreenMode( 0 );
vbmClear( 255 ); // clears the bitmap with solid pixels
vbmClearColor( GREEN ); // sets the colour of the bitmap to green