This commit is contained in:
drmortalwombat 2024-12-22 21:22:08 +01:00
commit 890a4b996e

View File

@ -268,11 +268,19 @@ char getpch(void)
char kbhit(void)
{
#if defined(__CBMPET__)
return __asm
{
lda $9e
sta accu
};
#else
return __asm
{
lda $c6
sta accu
};
#endif
}
char getche(void)