1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-30 04:29:26 +00:00
cc65/libsrc/c64/soft80_scrsize.s
2015-10-12 14:40:12 +02:00

21 lines
452 B
ArmAsm

;
; Groepaz/Hitmen, 12.10.2015
;
; lowlevel screensize function for the soft80 implementation
;
.export soft80_screensize
.include "soft80.inc"
soft80_screensize:
ldy #screenrows
ldx #charsperline
rts
;-------------------------------------------------------------------------------
; force the init constructor to be imported
.import soft80_init
conio_init = soft80_init