summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Sandro Ronco <sronco@users.noreply.github.com>2012-12-13 19:40:03 +0000
committer Sandro Ronco <sronco@users.noreply.github.com>2012-12-13 19:40:03 +0000
commitc41eaf740b5a54f1964ee5f7b979d780010c0800 (patch)
tree7127d9bf339da765514f537f48f11dd0c3a7fac8
parent2c9fee5c809733df2df617d11fe0922fc21d42d2 (diff)
(MESS) TVC HBF: fixed FDC clock. (nw)
-rw-r--r--src/mess/machine/tvc_hbf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/tvc_hbf.c b/src/mess/machine/tvc_hbf.c
index 918567951c1..666f0a4e1bc 100644
--- a/src/mess/machine/tvc_hbf.c
+++ b/src/mess/machine/tvc_hbf.c
@@ -21,7 +21,7 @@ static SLOT_INTERFACE_START( tvc_hbf_floppies )
SLOT_INTERFACE_END
static MACHINE_CONFIG_FRAGMENT(tvc_hbf)
- MCFG_FD1793x_ADD("fdc", XTAL_16MHz / 16 * 8) // real clock is 16MHz / 16
+ MCFG_FD1793x_ADD("fdc", XTAL_16MHz / 16)
MCFG_FLOPPY_DRIVE_ADD("fdc:0", tvc_hbf_floppies, "525qd", NULL, tvc_hbf_device::floppy_formats)
MCFG_FLOPPY_DRIVE_ADD("fdc:1", tvc_hbf_floppies, "525qd", NULL, tvc_hbf_device::floppy_formats)
MACHINE_CONFIG_END