From 4f1275708c60e7b582a3e5a02fac4ee0300a9999 Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Wed, 12 Oct 2016 09:39:52 -0700 Subject: Initial implementation of video output hardware --- jag_video.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'jag_video.h') diff --git a/jag_video.h b/jag_video.h index 4cef19e..95790ec 100644 --- a/jag_video.h +++ b/jag_video.h @@ -50,13 +50,14 @@ enum { #define LINEBUFFER_WORDS 720 typedef struct { - uint16_t regs[JAG_VIDEO_REGS]; + uint32_t *output; + uint32_t output_pitch; + uint16_t regs[JAG_VIDEO_REGS]; uint16_t clut[256]; uint16_t line_buffer_a[LINEBUFFER_WORDS]; uint16_t line_buffer_b[LINEBUFFER_WORDS]; uint16_t *write_line_buffer; - uint16_t *read_line_buffer; uint32_t cycles; uint8_t pclock_div; -- cgit v1.2.3