From c5219643162cb7d2a8688425a09008d28c8e2437 Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Thu, 1 Feb 2018 10:04:01 +0100 Subject: API change: Memory maps are now methods of the owner class [O. Galibert] Also, a lot more freedom happened, that's going to be more visible soon. --- src/mame/includes/tigeroad.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/mame/includes/tigeroad.h') diff --git a/src/mame/includes/tigeroad.h b/src/mame/includes/tigeroad.h index 58698b040a1..d478af6e164 100644 --- a/src/mame/includes/tigeroad.h +++ b/src/mame/includes/tigeroad.h @@ -63,6 +63,13 @@ public: void toramich(machine_config &config); void tigeroad(machine_config &config); void f1dream_comad(machine_config &config); + void comad_sound_io_map(address_map &map); + void comad_sound_map(address_map &map); + void main_map(address_map &map); + void sample_map(address_map &map); + void sample_port_map(address_map &map); + void sound_map(address_map &map); + void sound_port_map(address_map &map); protected: /* misc */ bool m_has_coinlock; @@ -95,6 +102,8 @@ public: void pushman(machine_config &config); void bballs(machine_config &config); + void bballs_map(address_map &map); + void pushman_map(address_map &map); protected: virtual void machine_start() override; -- cgit v1.2.3