summaryrefslogtreecommitdiff
path: root/jag_video.h
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2016-11-05 00:23:11 -0700
committerMichael Pavone <pavone@retrodev.com>2016-11-05 00:23:11 -0700
commitdd260c76cde35ba8ad5508f03163216f359d00e1 (patch)
treef3d3d57224ec08a2d08d53175f3722c74eadd697 /jag_video.h
parente895e82ba2f3cb0d47212e05740d51be5e8324b5 (diff)
Get Jaguar video interrupt working
Diffstat (limited to 'jag_video.h')
-rw-r--r--jag_video.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/jag_video.h b/jag_video.h
index ff6c5f2..ab2598a 100644
--- a/jag_video.h
+++ b/jag_video.h
@@ -96,6 +96,7 @@ typedef struct {
uint8_t pclock_div;
uint8_t pclock_counter;
uint8_t mode;
+ uint8_t cpu_int_pending;
object_processor op;
@@ -105,5 +106,6 @@ typedef struct {
jag_video *jag_video_init(void);
void jag_video_run(jag_video *context, uint32_t target_cycle);
void jag_video_reg_write(jag_video *context, uint32_t address, uint16_t value);
+uint32_t jag_next_vid_interrupt(jag_video *context);
#endif //JAG_VIDEO_H_