Files
Dennis Gunia bc1b9a399d Updated
2022-12-16 20:45:34 +01:00

23 lines
257 B
ArmAsm

EXEC_RST_08:
call print_char
ret
EXEC_RST_10:
push bc
push de
push hl
;call vdp_cursor_on
call read_char
push af
;call vdp_cursor_off
pop af
pop hl
pop de
pop bc
ret
EXEC_RST_18:
ld a,0
ret