summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/aristmk4.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/aristmk4.cpp')
-rw-r--r--src/mame/drivers/aristmk4.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/aristmk4.cpp b/src/mame/drivers/aristmk4.cpp
index 3d14c757d8c..49471155ead 100644
--- a/src/mame/drivers/aristmk4.cpp
+++ b/src/mame/drivers/aristmk4.cpp
@@ -435,6 +435,8 @@ public:
void aristmk4_poker(machine_config &config);
void aristmk4(machine_config &config);
void _86lions(machine_config &config);
+ void aristmk4_map(address_map &map);
+ void aristmk4_poker_map(address_map &map);
};
/* Partial Cashcade protocol */
@@ -998,7 +1000,7 @@ ADDRESS MAP - SLOT GAMES
******************************************************************************/
-static ADDRESS_MAP_START( aristmk4_map, AS_PROGRAM, 8, aristmk4_state )
+ADDRESS_MAP_START(aristmk4_state::aristmk4_map)
AM_RANGE(0x0000, 0x07ff) AM_RAM AM_SHARE("mkiv_vram") // video ram - chips U49 / U50
AM_RANGE(0x0800, 0x17ff) AM_RAM
AM_RANGE(0x1800, 0x1800) AM_DEVREADWRITE("crtc", mc6845_device, status_r, address_w)
@@ -1042,7 +1044,7 @@ The graphics rom is mapped from 0x4000 - 0x4fff
The U87 personality rom is not required, therefore game rom code mapping is from 0x8000-0xffff
*/
-static ADDRESS_MAP_START( aristmk4_poker_map, AS_PROGRAM, 8, aristmk4_state )
+ADDRESS_MAP_START(aristmk4_state::aristmk4_poker_map)
AM_RANGE(0x0000, 0x07ff) AM_RAM AM_SHARE("mkiv_vram") // video ram - chips U49 / U50
AM_RANGE(0x0800, 0x17ff) AM_RAM
AM_RANGE(0x1800, 0x1800) AM_DEVREADWRITE("crtc", mc6845_device, status_r, address_w)