Previous 199869 Revisions Next

r31641 Wednesday 13th August, 2014 at 13:20:25 UTC by R. Belmont
(MESS) Apple II: enable language-card write on reset based on h/w testing [Peter Ferrie]
[src/mess/machine]apple2.c

trunk/src/mess/machine/apple2.c
r31640r31641
11951195      || !strncmp(machine().system().name, "apple2g", 7);
11961196   apple2_setvar(need_intcxrom ? VAR_INTCXROM : 0, ~0);
11971197
1198   // ROM 0 cannot boot unless language card bank 2 is write-enabled (but read ROM) on startup
1199   if (!strncmp(machine().system().name, "apple2g", 7))
1200   {
1201      apple2_setvar(VAR_LCWRITE|VAR_LCRAM2, VAR_LCWRITE | VAR_LCRAM | VAR_LCRAM2);
1202   }
1198   // IIgs ROM 0 cannot boot unless language card bank 2 is write-enabled (but read ROM) on startup
1199   // Peter Ferrie reports this is also the default on the IIe/IIc at least
1200   apple2_setvar(VAR_LCWRITE|VAR_LCRAM2, VAR_LCWRITE | VAR_LCRAM | VAR_LCRAM2);
12031201
12041202   m_a2_speaker_state = 0;
12051203

Previous 199869 Revisions Next


© 1997-2024 The MAME Team