Fix old asm in conio.c

This commit is contained in:
drmortalwombat 2021-11-02 14:59:05 +01:00
parent 0f485e39c7
commit dcbd51e75e

View File

@ -116,8 +116,7 @@ int getch(void)
void putch(int c) void putch(int c)
{ {
__asm { __asm {
ldy #c lda c
lda (fp), y
jsr 0xffd2 jsr 0xffd2
} }
} }