summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ata
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-03-09 20:58:29 -0400
committer AJR <ajrhacker@users.noreply.github.com>2020-03-09 20:58:35 -0400
commit63c3ecff15d4357e43b36c1000e8b051e0d6f3a8 (patch)
tree05c5b54553a8deed9f6b4e211e5ecdacf86f4c6b /src/devices/bus/ata
parentf98a3b831be21fb4b789140b6f7e6e24dfe2eb71 (diff)
ata/px320a: Change MCU type based on further research (nw)
Diffstat (limited to 'src/devices/bus/ata')
-rw-r--r--src/devices/bus/ata/px320a.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/ata/px320a.cpp b/src/devices/bus/ata/px320a.cpp
index befaad3befd..fabad11e967 100644
--- a/src/devices/bus/ata/px320a.cpp
+++ b/src/devices/bus/ata/px320a.cpp
@@ -75,7 +75,7 @@ void px320a_device::frcpu_map(address_map &map)
void px320a_device::device_add_mconfig(machine_config &config)
{
- MB91101A(config, m_frcpu, 8000000); // FR type guessed; clock unknown
+ MB91F155A(config, m_frcpu, 16'000'000); // FR type guessed; clock unknown
m_frcpu->set_addrmap(AS_PROGRAM, &px320a_device::frcpu_map);
}