1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-10 23:29:05 +00:00
cc65/libsrc/geos/conio/_scrsize.s
izydorst 0264d31e7c new GEOSZP segment for library use, added GEOS tgi driver, fixes in GEOS conio
git-svn-id: svn://svn.cc65.org/cc65/trunk@1864 b7a2c559-68d2-44c3-8de9-860c34a00d81
2002-12-31 15:35:55 +00:00

39 lines
528 B
ArmAsm

;
; Maciej 'YTM/Elysium' Witkowiak
;
; Screen size variables
;
; 6.3.2001
.include "../inc/geossym.inc"
.export xsize, ysize
.importzp cursor_r, cursor_c
.import _cursor
.constructor initscrsize
.code
initscrsize:
lda graphMode
bpl L1
lda #80 ; 80 columns (more or less)
.byte $2c
L1: lda #40 ; 40 columns (more or less)
sta xsize
lda #24 ; something like that for Y size
sta ysize
ldx #1
stx cursor_r
dex
stx cursor_c
txa
jmp _cursor ; home and update cursor
.bss
xsize: .res 1
ysize: .res 1