From dcbd51e75e02c5f2399a64b2b2005510f55f11e1 Mon Sep 17 00:00:00 2001 From: drmortalwombat <90205530+drmortalwombat@users.noreply.github.com> Date: Tue, 2 Nov 2021 14:59:05 +0100 Subject: [PATCH] Fix old asm in conio.c --- include/conio.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/conio.c b/include/conio.c index 5c3d94f..d09e831 100644 --- a/include/conio.c +++ b/include/conio.c @@ -116,8 +116,7 @@ int getch(void) void putch(int c) { __asm { - ldy #c - lda (fp), y + lda c jsr 0xffd2 } }