2001-10-27 17:13:22 +00:00
|
|
|
|
|
|
|
;
|
|
|
|
; Maciej 'YTM/Elysium' Witkowiak
|
|
|
|
;
|
|
|
|
; 27.10.2001
|
2002-03-08 16:47:34 +00:00
|
|
|
; 06.03.2002
|
2003-01-02 01:50:39 +00:00
|
|
|
; 02.01.2003
|
2001-10-27 17:13:22 +00:00
|
|
|
|
|
|
|
; unsigned char wherex (void);
|
|
|
|
; unsigned char wherey (void);
|
|
|
|
|
|
|
|
.export _wherex, _wherey
|
2002-12-23 22:14:14 +00:00
|
|
|
.importzp cursor_c, cursor_r
|
2001-10-27 17:13:22 +00:00
|
|
|
|
2002-03-08 16:47:34 +00:00
|
|
|
_wherex: lda cursor_c
|
2003-01-02 01:50:39 +00:00
|
|
|
ldx #0
|
2001-10-27 17:13:22 +00:00
|
|
|
rts
|
|
|
|
|
2002-03-08 16:47:34 +00:00
|
|
|
_wherey: lda cursor_r
|
2003-01-02 01:50:39 +00:00
|
|
|
ldx #0
|
2001-10-27 17:13:22 +00:00
|
|
|
rts
|