apple1-videocard-lib/demo_blank.h
2021-12-08 22:00:30 +01:00

13 lines
251 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_blank(blank);
}