mirror of
https://github.com/cc65/cc65.git
synced 2024-12-25 02:29:52 +00:00
21 lines
452 B
ArmAsm
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
|