53280
From C64-Wiki
(Redirected from screen frame)
Jump to navigationJump to searchThe memory address 53280 ($D020) is used for the frame color of the screen and is setting under BASIC with POKE 53280,X
. It can be used one of 16 colors.
The standard color of the C64 is:
- Background color is dark blue (6)
- Screenframe is light blue (14)
- Text color is also light blue (14)
In machine languages can manipulate the screen frame for showing chars, sprites and raster bars.
Examples
10 X = X +1: IF X>15 THEN X=0 20 POKE 53280,X: POKE 646,X 30 PRINT " * C64-WIKI DEMO "; 40 FOR Z=0 TO 150: NEXT Z: GOTO 10
This C64-Wiki demo program changes permanently the frame and text color - break with pushing the key RUN/STOP