conio with fixed width and proportional font support

git-svn-id: svn://svn.cc65.org/cc65/trunk@1178 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
izydorst
2002-03-08 16:47:34 +00:00
parent d537134626
commit ae74057353
10 changed files with 96 additions and 92 deletions

View File

@@ -3,6 +3,7 @@
; Maciej 'YTM/Elysium' Witkowiak
;
; 27.10.2001
; 06.03.2002
; unsigned char wherex (void);
; unsigned char wherey (void);
@@ -11,20 +12,10 @@
.importzp tmp1, tmp2
.include "../inc/jumptab.inc"
.include "cursor.inc"
.include "../inc/cursor.inc"
_wherex: lda cursor_x
sta tmp1
lda cursor_x+1
sta tmp2
ldx #tmp1
ldy #3
jsr DShiftRight
lda tmp1
_wherex: lda cursor_c
rts
_wherey: lda cursor_y
lsr
lsr
lsr
_wherey: lda cursor_r
rts