mirror of
https://github.com/nippur72/apple1-videocard-lib.git
synced 2024-12-22 13:30:38 +00:00
13 lines
255 B
C
13 lines
255 B
C
// TODO make it static once KickC bug is fixed
|
|
byte blank = BLANK_OFF;
|
|
|
|
void flip_blank() {
|
|
blank ^= 1;
|
|
|
|
if(blank == BLANK_OFF) woz_puts("NORMAL\r");
|
|
else woz_puts("BLANK\r");
|
|
|
|
// write "blank" bit
|
|
tms_set_blank(blank);
|
|
}
|