summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gamtor.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-04-10 14:06:51 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-04-10 14:06:51 +0000
commit1c23311d1a964ea37d112b3ddee700a0f76c1270 (patch)
treed40cfb298b7b2df9984f165e756e46f3fabef544 /src/mame/drivers/gamtor.c
parent562d8191358374418e48bb78299fc5eee2ead634 (diff)
more modernization (no whatsnew)
Diffstat (limited to 'src/mame/drivers/gamtor.c')
-rw-r--r--src/mame/drivers/gamtor.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mame/drivers/gamtor.c b/src/mame/drivers/gamtor.c
index ae694ca2f12..5785ea2a4ec 100644
--- a/src/mame/drivers/gamtor.c
+++ b/src/mame/drivers/gamtor.c
@@ -33,9 +33,10 @@ class gaminator_state : public driver_device
public:
gaminator_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag) { }
+ DECLARE_WRITE32_MEMBER(gamtor_unk_w);
};
-static WRITE32_HANDLER( gamtor_unk_w )
+WRITE32_MEMBER(gaminator_state::gamtor_unk_w)
{
}
@@ -45,7 +46,7 @@ static WRITE32_HANDLER( gamtor_unk_w )
static ADDRESS_MAP_START( gaminator_map, AS_PROGRAM, 32, gaminator_state )
AM_RANGE(0x00000000, 0x07ffffff) AM_ROM
AM_RANGE(0x08000000, 0x0bffffff) AM_RAM
- AM_RANGE(0x1e040008, 0x1e04000b) AM_WRITE_LEGACY(gamtor_unk_w )
+ AM_RANGE(0x1e040008, 0x1e04000b) AM_WRITE(gamtor_unk_w )
AM_RANGE(0x20000000, 0x2003ffff) AM_RAM