trunk/src/mess/machine/apple2.c
| r31640 | r31641 | |
| 1195 | 1195 | || !strncmp(machine().system().name, "apple2g", 7); |
| 1196 | 1196 | apple2_setvar(need_intcxrom ? VAR_INTCXROM : 0, ~0); |
| 1197 | 1197 | |
| 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); |
| 1203 | 1201 | |
| 1204 | 1202 | m_a2_speaker_state = 0; |
| 1205 | 1203 | |