summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/n8080.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-01-21 23:42:41 +0100
committer Olivier Galibert <galibert@pobox.com>2018-01-23 10:25:25 +0100
commit03ba80e0ef3e021f6ff89ef91ae5cdce4e24b994 (patch)
treef127b7f533d36df2484f82fcb05cef5f4c04f232 /src/mame/drivers/n8080.cpp
parentf61a64ea29bf46bf2deb2e1fbace5b24f3d7b0aa (diff)
xtal.h is dead, long live to xtal.cpp [O. Galibert]
Diffstat (limited to 'src/mame/drivers/n8080.cpp')
-rw-r--r--src/mame/drivers/n8080.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/n8080.cpp b/src/mame/drivers/n8080.cpp
index 6adbefebb1d..e96d994b8da 100644
--- a/src/mame/drivers/n8080.cpp
+++ b/src/mame/drivers/n8080.cpp
@@ -16,7 +16,7 @@
#include "cpu/i8085/i8085.h"
#include "includes/n8080.h"
-#define MASTER_CLOCK XTAL_20_16MHz
+#define MASTER_CLOCK XTAL(20'160'000)
WRITE8_MEMBER(n8080_state::n8080_shift_bits_w)
@@ -565,7 +565,7 @@ MACHINE_CONFIG_END
MACHINE_CONFIG_DERIVED(n8080_state::westgun2, sheriff)
/* basic machine hardware */
- MCFG_CPU_REPLACE("maincpu", I8080, XTAL_19_968MHz / 10)
+ MCFG_CPU_REPLACE("maincpu", I8080, XTAL(19'968'000) / 10)
MCFG_I8085A_STATUS(WRITE8(n8080_state,n8080_status_callback))
MCFG_I8085A_INTE(WRITELINE(n8080_state,n8080_inte_callback))
MCFG_CPU_PROGRAM_MAP(main_cpu_map)