1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-28 03:29:39 +00:00

SCREEN->screensize

This commit is contained in:
mrdudz 2015-10-01 15:03:11 +02:00
parent f39337a6ec
commit 5ea842b88b
2 changed files with 4 additions and 4 deletions

View File

@ -48,8 +48,8 @@
.export PLOT := soft80_kplot
; soft80_kscreen.s
.import soft80_kscreen
.export SCREEN := soft80_kscreen
.import soft80_screensize
.export screensize := soft80_screensize
;-------------------------------------------------------------------------------
; force the init constructor to be imported

View File

@ -1,9 +1,9 @@
.export soft80_kscreen
.export soft80_screensize
.include "soft80.inc"
soft80_kscreen:
soft80_screensize:
ldy #screenrows
ldx #charsperline
rts