Replace enums with simple defs, replace kb routine with asm

calypsi uses "int" as the type for enums, also replace the basic
keyboard routine for key reading with an assembly written one
This commit is contained in:
hkz 2025-08-20 20:57:26 +02:00
commit 5d739383aa
9 changed files with 103 additions and 73 deletions

View file

@ -12,7 +12,7 @@ LIBS=clib-6502.a
# Common source files
ASM_SRCS = tk2k_startup.s preserve_zero_pages.s
ASM_SRCS = tk2k_startup.s preserve_zero_pages.s input_asm.s
C_SRCS = main.c monitor_subroutines.c utility.c \
game_graphics.c game_logic.c input.c \
line_data.c tiles.c graph_misc_data.c \