summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/super80.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/super80.cpp')
-rw-r--r--src/mame/drivers/super80.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/super80.cpp b/src/mame/drivers/super80.cpp
index b1368fc8f04..3c9acd8985c 100644
--- a/src/mame/drivers/super80.cpp
+++ b/src/mame/drivers/super80.cpp
@@ -226,7 +226,7 @@ ToDo:
#include "super80.lh"
-#define MASTER_CLOCK (XTAL_12MHz)
+#define MASTER_CLOCK (XTAL(12'000'000))
#define PIXEL_CLOCK (MASTER_CLOCK/2)
#define HTOTAL (384)
#define HBEND (0)
@@ -852,7 +852,7 @@ MACHINE_CONFIG_DERIVED(super80_state::super80r, super80v)
MCFG_Z80DMA_IN_IORQ_CB(READ8(super80_state, io_read_byte))
MCFG_Z80DMA_OUT_IORQ_CB(WRITE8(super80_state, io_write_byte))
- MCFG_WD2793_ADD("fdc", XTAL_2MHz)
+ MCFG_WD2793_ADD("fdc", XTAL(2'000'000))
MCFG_WD_FDC_DRQ_CALLBACK(DEVWRITELINE("dma", z80dma_device, rdy_w))
MCFG_FLOPPY_DRIVE_ADD("fdc:0", super80_floppies, "525dd", floppy_image_device::default_floppy_formats)
MCFG_FLOPPY_DRIVE_SOUND(true)