summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-03-06 17:13:29 -0500
committer AJR <ajrhacker@users.noreply.github.com>2020-03-06 17:13:29 -0500
commita1ec193b78fc539ea0bb3bf56827efdf9b109ffc (patch)
treee8906a98ebbc98be8694aa3ae4b026cfdcb4aa24
parent81146719397ebf24089c00c88d66f50d13594367 (diff)
pcd_kbd: "FIXME: the mc2661 baud rate calculation" (nw)
-rw-r--r--src/mame/machine/pcd_kbd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/pcd_kbd.cpp b/src/mame/machine/pcd_kbd.cpp
index 7e42a41ad52..4af99e7cd41 100644
--- a/src/mame/machine/pcd_kbd.cpp
+++ b/src/mame/machine/pcd_kbd.cpp
@@ -29,7 +29,7 @@ void pcd_keyboard_device::pcd_keyboard_map(address_map &map)
void pcd_keyboard_device::device_add_mconfig(machine_config &config)
{
- i8035_device &mcu(I8035(config, "mcu", 5760000*2)); // FIXME: the mc2661 baud rate calculation
+ i8035_device &mcu(I8035(config, "mcu", 5760000));
mcu.set_addrmap(AS_PROGRAM, &pcd_keyboard_device::pcd_keyboard_map);
mcu.bus_in_cb().set(FUNC(pcd_keyboard_device::bus_r));
mcu.p1_in_cb().set(FUNC(pcd_keyboard_device::p1_r));