mac: add additional VIA delay for Cuda, maclc520 and maccclas boot [R. Belmont]

This commit is contained in:
arbee 2021-01-21 21:33:56 -05:00
parent bd2db8dcc6
commit 95319a5043

View File

@ -1132,12 +1132,18 @@ void mac_state::machine_reset()
fatalerror("mac: unknown clock\n"); fatalerror("mac: unknown clock\n");
} }
// Egret currently needs more dramatic VIA slowdowns. Need to determine what's realistic. // Egret currently needs a larger VIA slowdown
if (ADB_IS_EGRET) if (ADB_IS_EGRET)
{ {
m_via_cycles *= 2; m_via_cycles *= 2;
} }
// And a little more for Cuda.
if (ADB_IS_CUDA)
{
m_via_cycles *= 3;
}
// default to 32-bit mode on LC // default to 32-bit mode on LC
if (m_model == MODEL_MAC_LC) if (m_model == MODEL_MAC_LC)
{ {