0 Members and 1 Guest are viewing this topic.
Well...- Before calling OFFSCRPT, the OS turns the LCD off and disables all interrupts (via port 3.)[...]- GetKey halts the CPU, which freezes the system since interrupts have been disabled.
As FloppusMaximus said here :Quote from: FloppusMaximusWell...- Before calling OFFSCRPT, the OS turns the LCD off and disables all interrupts (via port 3.)[...]- GetKey halts the CPU, which freezes the system since interrupts have been disabled.
.org $8001 ld a,3 out ($10),a ret.end
.org $8001 ld a,3 out ($10),aloop: ld a,$FD out (1),a in a,(1) bit 6,a ret z jr loop.end