comparison vdp.h @ 65:aef6302770c2

Fix issue in which VDP would have trouble emptying FIFO because the VDP cycle count got reset at end of frame.
author Mike Pavone <pavone@retrodev.com>
date Wed, 19 Dec 2012 22:15:16 -0800
parents a28b1dfe1af2
children 108e587165c0
comparison
equal deleted inserted replaced
64:2b1a65f4b85d 65:aef6302770c2
105 void vdp_save_state(vdp_context * context, FILE * outfile); 105 void vdp_save_state(vdp_context * context, FILE * outfile);
106 void vdp_control_port_write(vdp_context * context, uint16_t value); 106 void vdp_control_port_write(vdp_context * context, uint16_t value);
107 void vdp_data_port_write(vdp_context * context, uint16_t value); 107 void vdp_data_port_write(vdp_context * context, uint16_t value);
108 uint16_t vdp_control_port_read(vdp_context * context); 108 uint16_t vdp_control_port_read(vdp_context * context);
109 uint16_t vdp_data_port_read(vdp_context * context); 109 uint16_t vdp_data_port_read(vdp_context * context);
110 void vdp_adjust_cycles(vdp_context * context, uint32_t deduction);
110 111
111 #endif //VDP_H_ 112 #endif //VDP_H_