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
2 changed files with 17 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue