apple2e: PAL/SECAM models now have the correct CPU speed. [R. Belmont]

This commit is contained in:
arbee 2021-06-18 22:54:10 -04:00
parent 617fe8553d
commit ff5b73b1cb

View File

@ -4832,6 +4832,9 @@ void apple2e_state::apple2e(machine_config &config)
void apple2e_state::apple2epal(machine_config &config)
{
apple2e(config);
M6502(config.replace(), m_maincpu, 1016966);
m_maincpu->set_addrmap(AS_PROGRAM, &apple2e_state::apple2e_map);
m_maincpu->set_dasm_override(FUNC(apple2e_state::dasm_trampoline));
m_screen->set_raw(1021800*14, (65*7)*2, 0, (40*7)*2, 312, 0, 192);
}
@ -4855,6 +4858,10 @@ void apple2e_state::apple2ee(machine_config &config)
void apple2e_state::apple2eepal(machine_config &config)
{
apple2ee(config);
M65C02(config.replace(), m_maincpu, 1016966);
m_maincpu->set_addrmap(AS_PROGRAM, &apple2e_state::apple2e_map);
m_maincpu->set_dasm_override(FUNC(apple2e_state::dasm_trampoline));
m_screen->set_raw(1021800*14, (65*7)*2, 0, (40*7)*2, 312, 0, 192);
}