1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-08 16:54:52 +00:00
cc65/libsrc/c64/soft80_scrsize.s

21 lines
452 B
ArmAsm
Raw Normal View History

2015-10-12 12:40:12 +00:00
;
; Groepaz/Hitmen, 12.10.2015
;
; lowlevel screensize function for the soft80 implementation
;
2015-10-01 13:03:11 +00:00
.export soft80_screensize
.include "soft80.inc"
2015-10-01 13:03:11 +00:00
soft80_screensize:
ldy #screenrows
ldx #charsperline
rts
2015-10-09 11:34:23 +00:00
;-------------------------------------------------------------------------------
; force the init constructor to be imported
.import soft80_init
conio_init = soft80_init