mirror of
https://github.com/cc65/cc65.git
synced 2024-12-25 17:29:50 +00:00
Add kernal replacement function
git-svn-id: svn://svn.cc65.org/cc65/trunk@3549 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
bec540da9e
commit
8eef418197
@ -64,6 +64,7 @@ OBJS = _scrsize.o \
|
||||
kopen.o \
|
||||
kreadst.o \
|
||||
kscnkey.o \
|
||||
kscreen.o \
|
||||
ksetnam.o \
|
||||
kudtim.o \
|
||||
mainargs.o \
|
||||
|
16
libsrc/cbm510/kscreen.s
Normal file
16
libsrc/cbm510/kscreen.s
Normal file
@ -0,0 +1,16 @@
|
||||
;
|
||||
; Ullrich von Bassewitz, 2003-12-19
|
||||
;
|
||||
; SCREEN kernal call
|
||||
;
|
||||
|
||||
.export SCREEN
|
||||
|
||||
|
||||
.proc SCREEN
|
||||
|
||||
ldx #40 ; Columns
|
||||
ldy #25 ; Lines
|
||||
rts
|
||||
|
||||
.endproc
|
Loading…
Reference in New Issue
Block a user