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/digijet.cpp | |
parent | f155992daab88ad024cec995428a67108218b51d (diff) |
Address maps macros removal, pass 1 [O. Galibert]
Diffstat (limited to 'src/mame/drivers/digijet.cpp')
-rw-r--r-- | src/mame/drivers/digijet.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mame/drivers/digijet.cpp b/src/mame/drivers/digijet.cpp index 08635fa7473..adcb112da5b 100644 --- a/src/mame/drivers/digijet.cpp +++ b/src/mame/drivers/digijet.cpp @@ -41,8 +41,9 @@ public: void io_map(address_map &map); }; -ADDRESS_MAP_START(digijet_state::io_map) -ADDRESS_MAP_END +void digijet_state::io_map(address_map &map) +{ +} static INPUT_PORTS_START( digijet ) INPUT_PORTS_END |