diff options
author | 2018-03-13 07:36:43 +0100 | |
---|---|---|
committer | 2018-03-14 14:07:14 +0100 | |
commit | 115bb9936c5cd3faf955d7eb1e251a94e4744b7b (patch) | |
tree | f0230f547f6c750f9974c61479eef28cbe4ad571 /src/mame/drivers/hapyfish.cpp | |
parent | f155992daab88ad024cec995428a67108218b51d (diff) |
Address maps macros removal, pass 1 [O. Galibert]
Diffstat (limited to 'src/mame/drivers/hapyfish.cpp')
-rw-r--r-- | src/mame/drivers/hapyfish.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/drivers/hapyfish.cpp b/src/mame/drivers/hapyfish.cpp index 8f86c3a7c5a..4823b5349b0 100644 --- a/src/mame/drivers/hapyfish.cpp +++ b/src/mame/drivers/hapyfish.cpp @@ -37,9 +37,10 @@ public: void hapyfish_map(address_map &map); }; -ADDRESS_MAP_START(hapyfish_state::hapyfish_map) - AM_RANGE(0x00000000, 0x00003fff) AM_ROM -ADDRESS_MAP_END +void hapyfish_state::hapyfish_map(address_map &map) +{ + map(0x00000000, 0x00003fff).rom(); +} static INPUT_PORTS_START( hapyfish ) INPUT_PORTS_END |