1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-30 16:29:58 +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:
cuz 2005-07-25 18:15:11 +00:00
parent bec540da9e
commit 8eef418197
2 changed files with 17 additions and 0 deletions

View File

@ -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
View 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