summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gsword.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gsword.h')
-rw-r--r--src/mame/includes/gsword.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mame/includes/gsword.h b/src/mame/includes/gsword.h
index 4b93a0684d7..34a94077859 100644
--- a/src/mame/includes/gsword.h
+++ b/src/mame/includes/gsword.h
@@ -64,6 +64,7 @@ public:
uint32_t screen_update_gsword(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect);
+ void cpu1_map(address_map &map);
};
@@ -97,6 +98,10 @@ public:
virtual void machine_reset() override;
void gsword(machine_config &config);
+ void cpu1_io_map(address_map &map);
+ void cpu2_io_map(address_map &map);
+ void cpu2_map(address_map &map);
+ void cpu3_map(address_map &map);
private:
required_device<generic_latch_8_device> m_soundlatch;
required_device<msm5205_device> m_msm;
@@ -136,6 +141,9 @@ public:
virtual void machine_reset() override;
void josvolly(machine_config &config);
+ void josvolly_cpu1_io_map(address_map &map);
+ void josvolly_cpu2_io_map(address_map &map);
+ void josvolly_cpu2_map(address_map &map);
private:
bool m_cpu2_nmi_enable;
u8 m_mcu1_p1;