]> git.sur5r.net Git - cc65/commitdiff
Moved wherex and wherey into separate modules.
authorcpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 2 Jan 2003 21:45:23 +0000 (21:45 +0000)
committercpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 2 Jan 2003 21:45:23 +0000 (21:45 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1869 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/atari/Makefile
libsrc/atari/where.s [deleted file]

index 9541f3999e32052fff17776c9d6d263c63c892ed..a6e9555a41529fc4f332a42a5dbdf0980f484d22 100644 (file)
@@ -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 (file)
index 25c2d0f..0000000
+++ /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
-
-
-
-
-