diff --git a/libsrc/atari/Makefile b/libsrc/atari/Makefile index 9541f3999..a6e9555a4 100644 --- a/libsrc/atari/Makefile +++ b/libsrc/atari/Makefile @@ -80,7 +80,8 @@ OBJS = _scrsize.o \ systime.o \ tvtype.o \ ucase_fn.o \ - where.o \ + wherex.o \ + wherey.o \ write.o diff --git a/libsrc/atari/where.s b/libsrc/atari/where.s deleted file mode 100644 index 25c2d0fd8..000000000 --- a/libsrc/atari/where.s +++ /dev/null @@ -1,27 +0,0 @@ -; -; Ullrich von Bassewitz, 06.08.1998 -; -; unsigned char wherex (void); -; unsigned char wherey (void); - - .export _wherex, _wherey - .import plot - - .include "atari.inc" - -_wherex: - sec - jsr plot ; Get cursor position - tya - rts - -_wherey: - sec - jsr plot ; Get cursor position - txa - rts - - - - -