summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/pcw.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/pcw.h')
-rw-r--r--src/mame/includes/pcw.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mame/includes/pcw.h b/src/mame/includes/pcw.h
index 59bbce9efb9..60a376bc830 100644
--- a/src/mame/includes/pcw.h
+++ b/src/mame/includes/pcw.h
@@ -46,6 +46,9 @@ public:
, m_screen(*this, "screen")
, m_palette(*this, "palette")
, m_ppalette(*this, "ppalette")
+ , m_rdbanks(*this, "bank%u", 1U)
+ , m_wrbanks(*this, "bank%u", 5U)
+ , m_iptlines(*this, "LINE%u", 0U)
{ }
int m_boot;
@@ -141,6 +144,8 @@ public:
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
required_device<palette_device> m_ppalette;
+ required_memory_bank_array<4> m_rdbanks, m_wrbanks;
+ required_ioport_array<16> m_iptlines;
inline void pcw_plot_pixel(bitmap_ind16 &bitmap, int x, int y, uint32_t color);
void pcw_update_interrupt_counter();