1
0
mirror of https://github.com/cc65/cc65.git synced 2025-02-10 09:31:08 +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 .export PLOT := soft80_kplot
; soft80_kscreen.s ; soft80_kscreen.s
.import soft80_kscreen .import soft80_screensize
.export SCREEN := soft80_kscreen .export screensize := soft80_screensize
;------------------------------------------------------------------------------- ;-------------------------------------------------------------------------------
; force the init constructor to be imported ; force the init constructor to be imported

View File

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