mirror of
https://github.com/holub/mame
synced 2025-04-26 10:13:37 +03:00
mac: add additional VIA delay for Cuda, maclc520 and maccclas boot [R. Belmont]
This commit is contained in:
parent
bd2db8dcc6
commit
95319a5043
@ -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)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user