Split files

This commit is contained in:
Karri Kaksonen
2022-04-16 19:15:06 +03:00
committed by mrdudz
parent 6a6581815d
commit e0c7880e34
5 changed files with 37 additions and 31 deletions

18
libsrc/atari7800/wherex.s Normal file
View File

@@ -0,0 +1,18 @@
;
; 2022-04-16, Karri Kaksonen
;
; unsigned char wherex()
;
.export _wherex
.import CURS_X
;-----------------------------------------------------------------------------
; Get cursor X position
;
.proc _wherex
lda CURS_X
rts
.endproc