summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/ygv608.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/ygv608.h')
-rw-r--r--src/mame/video/ygv608.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/mame/video/ygv608.h b/src/mame/video/ygv608.h
index bbe1e90ced7..5e71feb4800 100644
--- a/src/mame/video/ygv608.h
+++ b/src/mame/video/ygv608.h
@@ -17,8 +17,8 @@ public:
// construction/destruction
ygv608_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_WRITE16_MEMBER( write );
- DECLARE_READ16_MEMBER( read );
+ DECLARE_WRITE8_MEMBER( write );
+ DECLARE_READ8_MEMBER( read );
void set_gfxbank(uint8_t gfxbank);
@@ -195,6 +195,11 @@ private:
uint8_t m_screen_resize; // screen requires resize
uint8_t m_tilemap_resize; // tilemap requires resize
+
+ /* These were statically allocated in the r/w routines, looks hackish? */
+ int p0_state_r,p3_state_r;
+ int p0_state_w,p3_state_w;
+ int pattern_name_base_r,pattern_name_base_w; /* pattern name table base address */
};
// device type definition