summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2021-06-18 22:54:10 -0400
committer arbee <rb6502@users.noreply.github.com>2021-06-18 22:54:10 -0400
commitff5b73b1cb48ec3b5048803e3a889c16ea5ad1e7 (patch)
tree40ab206cd156988095dc2c24ed9d00e75630ac29
parent617fe8553dfa9957a25f55625eb3e14989878c29 (diff)
apple2e: PAL/SECAM models now have the correct CPU speed. [R. Belmont]
-rw-r--r--src/mame/drivers/apple2e.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mame/drivers/apple2e.cpp b/src/mame/drivers/apple2e.cpp
index 0ccd5cc8cf2..cb0df0279c8 100644
--- a/src/mame/drivers/apple2e.cpp
+++ b/src/mame/drivers/apple2e.cpp
@@ -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);
}