summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--blastem.c2
-rw-r--r--vdp.c2
-rw-r--r--vdp.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/blastem.c b/blastem.c
index f04f953..02dd3cb 100644
--- a/blastem.c
+++ b/blastem.c
@@ -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)) {
diff --git a/vdp.c b/vdp.c
index f4a64c0..f92721a 100644
--- a/vdp.c
+++ b/vdp.c
@@ -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
diff --git a/vdp.h b/vdp.h
index 1e0de91..ea01b3d 100644
--- a/vdp.h
+++ b/vdp.h
@@ -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);