From 094f883c3d1bbd95961ddbbc29f3c913e2d62f17 Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Wed, 23 Jan 2019 08:33:52 +0100 Subject: [PATCH] sgi: install a revision C controller (nw) --- src/mame/machine/sgi.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/machine/sgi.cpp b/src/mame/machine/sgi.cpp index 2172f9b5969..d48d0f32767 100644 --- a/src/mame/machine/sgi.cpp +++ b/src/mame/machine/sgi.cpp @@ -85,11 +85,11 @@ void sgi_mc_device::device_start() // if Indigo2, ID appropriately if (!strcmp(machine().system().name, "ip244415")) { - m_sys_id = 0x12; // rev. C MC, EISA bus present + m_sys_id = 0x13; // rev. C MC, EISA bus present } else { - m_sys_id = 0x02; // rev. C MC, no EISA bus + m_sys_id = 0x03; // rev. C MC, no EISA bus } m_rpss_timer = timer_alloc(TIMER_RPSS);