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
--- /dev/null
+
+;
+; 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
+++ /dev/null
-
-;
-; 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