Instruction and memory timing passing.

This commit is contained in:
2025-05-30 21:04:47 -06:00
parent 5f957fac84
commit 09775258aa
3 changed files with 47 additions and 10 deletions

View File

@ -77,4 +77,6 @@ cpu_registers *cpu_get_regs();
u8 cpu_get_int_flags();
void cpu_set_int_flags(u8 value);
void inst_to_str(cpu_context *ctx, char *str);
void inst_to_str(cpu_context *ctx, char *str);
void cpu_set_flags(cpu_context *ctx, int8_t z, int8_t n, int8_t h, int8_t c);