mirror of
https://github.com/holub/mame
synced 2025-04-20 15:32:45 +03:00
apple2e: PAL/SECAM models now have the correct CPU speed. [R. Belmont]
This commit is contained in:
parent
617fe8553d
commit
ff5b73b1cb
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user