1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00
cc65/libsrc/c64/soft80_scrsize.s

15 lines
267 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