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)
{
__asm {
ldy #c
lda (fp), y
lda c
jsr 0xffd2
}
}