summaryrefslogtreecommitdiff
path: root/vdp.h
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2012-12-19 22:15:16 -0800
committerMike Pavone <pavone@retrodev.com>2012-12-19 22:15:16 -0800
commita8cc92ea4de90aed27a5163eabb46114f1e16e25 (patch)
tree69d4d36cde81e30de899517f644bfc46a8330be3 /vdp.h
parentb0f3220f3ce75fe7103a7e01527bbf71e7f44d4c (diff)
Fix issue in which VDP would have trouble emptying FIFO because the VDP cycle count got reset at end of frame.
Diffstat (limited to 'vdp.h')
-rw-r--r--vdp.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vdp.h b/vdp.h
index 85ba665..173fd43 100644
--- a/vdp.h
+++ b/vdp.h
@@ -107,5 +107,6 @@ void vdp_control_port_write(vdp_context * context, uint16_t value);
void vdp_data_port_write(vdp_context * context, uint16_t value);
uint16_t vdp_control_port_read(vdp_context * context);
uint16_t vdp_data_port_read(vdp_context * context);
+void vdp_adjust_cycles(vdp_context * context, uint32_t deduction);
#endif //VDP_H_