]> git.sur5r.net Git - cc65/commitdiff
putchar.s moved to put_char.s due to name conflict with one of common/ files
authorizydorst <izydorst@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 20 Dec 2002 23:16:44 +0000 (23:16 +0000)
committerizydorst <izydorst@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 20 Dec 2002 23:16:44 +0000 (23:16 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1806 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/geos/graph/Makefile
libsrc/geos/graph/put_char.s [new file with mode: 0644]
libsrc/geos/graph/putchar.s [deleted file]

index 9ea62b99431552576f5f5213f7a5950c54cf2d78..82b7cb1238132ecae15755ba4023eb2c1a57f069 100644 (file)
@@ -11,7 +11,7 @@
 S_OBJS = drawline.o drawpoint.o framerectangle.o hlineregs.o horizontalline.o\
          imprintrectangle.o invertline.o invertrectangle.o pointregs.o recoverline.o\
          recoverrectangle.o rectangle.o initdrawwindow.o setpattern.o testpoint.o verticalline.o\
-         putchar.o putdecimal.o putstring.o usesystemfont.o\
+         put_char.o putdecimal.o putstring.o usesystemfont.o\
          getcharwidth.o loadcharset.o bitmapup.o bitmapregs.o bitmapclip.o bitotherclip.o\
          graphicsstring.o getintcharint.o
 
diff --git a/libsrc/geos/graph/put_char.s b/libsrc/geos/graph/put_char.s
new file mode 100644 (file)
index 0000000..ed88580
--- /dev/null
@@ -0,0 +1,21 @@
+
+;
+; Maciej 'YTM/Alliance' Witkowiak
+;
+; 30.10.99
+
+; void PutChar         (char character, char y, int x);
+
+           .import popa
+           .export _PutChar
+
+           .include "../inc/jumptab.inc"
+           .include "../inc/geossym.inc"
+
+_PutChar:
+           sta r11L
+           stx r11H
+           jsr popa
+           sta r1H
+           jsr popa
+           jmp PutChar
diff --git a/libsrc/geos/graph/putchar.s b/libsrc/geos/graph/putchar.s
deleted file mode 100644 (file)
index ed88580..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-
-;
-; Maciej 'YTM/Alliance' Witkowiak
-;
-; 30.10.99
-
-; void PutChar         (char character, char y, int x);
-
-           .import popa
-           .export _PutChar
-
-           .include "../inc/jumptab.inc"
-           .include "../inc/geossym.inc"
-
-_PutChar:
-           sta r11L
-           stx r11H
-           jsr popa
-           sta r1H
-           jsr popa
-           jmp PutChar