1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-10 19:29:45 +00:00
cc65/libsrc/c64/soft80_scrsize.s

15 lines
267 B
ArmAsm
Raw Normal View History

2015-10-12 14:40:12 +02:00
;
; Groepaz/Hitmen, 12.10.2015
;
; lowlevel screensize function for the soft80 implementation
;
2015-10-01 15:03:11 +02:00
.export soft80_screensize
.include "soft80.inc"
2015-10-01 15:03:11 +02:00
soft80_screensize:
ldy #screenrows
ldx #charsperline
rts