mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
15 lines
267 B
ArmAsm
15 lines
267 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
|