summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/indigo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/indigo.cpp')
-rw-r--r--src/mame/drivers/indigo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/indigo.cpp b/src/mame/drivers/indigo.cpp
index 0a2a43424fc..a1afaef6e3a 100644
--- a/src/mame/drivers/indigo.cpp
+++ b/src/mame/drivers/indigo.cpp
@@ -586,9 +586,9 @@ void indigo_state::cdrom_config(device_t *device)
}
MACHINE_CONFIG_START(indigo_state::indigo3k)
- MCFG_DEVICE_ADD("maincpu", R3041, 33000000)
- MCFG_R3000_ENDIANNESS(ENDIANNESS_BIG)
- MCFG_DEVICE_PROGRAM_MAP(indigo3k_map)
+ R3000A(config, m_maincpu, 33.333_MHz_XTAL, 32768, 32768);
+ downcast<r3000a_device &>(*m_maincpu).set_endianness(ENDIANNESS_BIG);
+ m_maincpu->set_addrmap(AS_PROGRAM, &indigo_state::indigo3k_map);
/* video hardware */
MCFG_SCREEN_ADD("screen", RASTER)