diff options
-rw-r--r-- | blastem.c | 2 | ||||
-rw-r--r-- | vdp.c | 2 | ||||
-rw-r--r-- | vdp.h | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -290,7 +290,7 @@ m68k_context * sync_components(m68k_context * context, uint32_t address) //printf("Set sync cycle to: %d @ %d, vcounter: %d, hslot: %d\n", context->sync_cycle, context->current_cycle, v_context->vcounter, v_context->hslot); if (context->int_ack) { //printf("acknowledging %d @ %d:%d, vcounter: %d, hslot: %d\n", context->int_ack, context->current_cycle, v_context->cycles, v_context->vcounter, v_context->hslot); - vdp_int_ack(v_context, context->int_ack); + vdp_int_ack(v_context); context->int_ack = 0; } if (!address && (break_on_sync || save_state)) { @@ -1933,7 +1933,7 @@ uint32_t vdp_next_vint_z80(vdp_context * context) return context->cycles + cycles_to_vint; } -void vdp_int_ack(vdp_context * context, uint16_t int_num) +void vdp_int_ack(vdp_context * context) { //Apparently the VDP interrupt controller is not very smart //Instead of paying attention to what interrupt is being acknowledged it just @@ -195,7 +195,7 @@ void vdp_adjust_cycles(vdp_context * context, uint32_t deduction); uint32_t vdp_next_hint(vdp_context * context); uint32_t vdp_next_vint(vdp_context * context); uint32_t vdp_next_vint_z80(vdp_context * context); -void vdp_int_ack(vdp_context * context, uint16_t int_num); +void vdp_int_ack(vdp_context * context); void vdp_print_sprite_table(vdp_context * context); void vdp_print_reg_explain(vdp_context * context); void latch_mode(vdp_context * context); |