From 70d99589caaccbcb403fb3544558d9b8e2e79c54 Mon Sep 17 00:00:00 2001 From: cpg Date: Thu, 2 Jan 2003 21:45:23 +0000 Subject: [PATCH] Moved wherex and wherey into separate modules. git-svn-id: svn://svn.cc65.org/cc65/trunk@1869 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/atari/Makefile | 3 ++- libsrc/atari/where.s | 27 --------------------------- 2 files changed, 2 insertions(+), 28 deletions(-) delete mode 100644 libsrc/atari/where.s 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 - - - - - -- 2.39.5