putchar.s moved to put_char.s due to name conflict with one of common/ files

git-svn-id: svn://svn.cc65.org/cc65/trunk@1806 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
izydorst
2002-12-20 23:16:44 +00:00
parent 6b1d62a281
commit 0f9dd23746
2 changed files with 1 additions and 1 deletions

View File

@@ -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