revers.o \
systime.o \
sysuname.o \
- where.o \
+ wherex.o \
+ wherey.o \
write.o
#--------------------------------------------------------------------------
+++ /dev/null
-
- ;; Keivn Ruland
- ;;
- ;; unsigned char wherex( void );
- ;; unsigned char wherey( void );
-
- .export _wherex, _wherey
-
- .include "apple2.inc"
-
-_wherex:
- lda CH
- rts
-
-_wherey:
- lda CV
- rts
-
\ No newline at end of file
--- /dev/null
+
+ ;; Keivn Ruland
+ ;;
+ ;; unsigned char wherex( void );
+
+ .export _wherex
+
+ .include "apple2.inc"
+
+.proc _wherex
+
+ lda CH
+ ldx #0
+ rts
+
+.endproc
+
--- /dev/null
+
+ ;; Keivn Ruland
+ ;;
+ ;; unsigned char wherey( void );
+
+ .export _wherey
+
+ .include "apple2.inc"
+
+.proc _wherey
+
+ lda CV
+ ldx #0
+ rts
+
+.endproc
+