conio with fixed width and proortional font support

git-svn-id: svn://svn.cc65.org/cc65/trunk@1180 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
izydorst
2002-03-08 16:49:31 +00:00
parent ae74057353
commit 93fd8803c1
7 changed files with 525 additions and 29 deletions

View File

@@ -0,0 +1,31 @@
;
; Maciej 'YTM/Elysium' Witkowiak
;
; Screen size variables
;
; 6.3.2001
.include "../inc/geossym.inc"
.export xsize, ysize
.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
rts
.bss
xsize: .res 1
ysize: .res 1