1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-02 15:29:33 +00:00
cc65/libsrc/plus4/clrscr.s

25 lines
473 B
ArmAsm

;
; Ullrich von Bassewitz, 06.08.1998
;
; void clrscr (void);
;
.export _clrscr
.include "plus4.inc"
.segment "LOWCODE" ; Must go into low memory
.proc _clrscr
sta ENABLE_ROM ; Enable the ROM
jsr CLRSCR ; Call the ROM routine
sta ENABLE_RAM ; Switch back to RAM
rts ; Return to caller
.endproc