calls, jumps, and stack.

This commit is contained in:
2025-01-30 22:54:33 -07:00
parent 022c24dd35
commit dd1c6d2e0e
7 changed files with 146 additions and 4 deletions

View File

@ -17,6 +17,7 @@ void fetch_data() {
return;
case AM_R_R:
ctx.fetched_data = cpu_read_reg(ctx.cur_inst->reg_2);
return;
case AM_R_D8:
ctx.fetched_data = bus_read(ctx.regs.pc);
emu_cycles(1);