removed some duplicated GEOS conio stuff

git-svn-id: svn://svn.cc65.org/cc65/trunk@2064 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
izydorst
2003-04-17 11:45:53 +00:00
parent c7bcd948a8
commit 04e4ecc319
5 changed files with 8 additions and 109 deletions

View File

@@ -4,12 +4,13 @@
;
; Screen size variables
;
; 6.3.2001
; 6.3.2001, 17.4.2003
.include "../inc/geossym.inc"
.export xsize, ysize
.export screensize
.importzp cursor_r, cursor_c
.import _cursor
.constructor initscrsize
@@ -32,6 +33,11 @@ L1: lda #40 ; 40 columns (more or less)
txa
jmp _cursor ; home and update cursor
screensize:
ldx xsize
ldy ysize
rts
.bss
xsize: .res 1