summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mario.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mario.h')
-rw-r--r--src/mame/includes/mario.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/mario.h b/src/mame/includes/mario.h
index 36d6730059d..225b5c86ad4 100644
--- a/src/mame/includes/mario.h
+++ b/src/mame/includes/mario.h
@@ -22,7 +22,7 @@
* 7C -> 100 => 256 - 124 = 132 ==> 264 Scanlines
*/
-#define MASTER_CLOCK XTAL_24MHz
+#define MASTER_CLOCK XTAL(24'000'000)
#define PIXEL_CLOCK (MASTER_CLOCK / 4)
#define CLOCK_1H (MASTER_CLOCK / 8)
#define CLOCK_16H (CLOCK_1H / 16)
@@ -36,10 +36,10 @@
#define VBSTART (240)
#define VBEND (16)
-#define Z80_MASTER_CLOCK XTAL_8MHz
+#define Z80_MASTER_CLOCK XTAL(8'000'000)
#define Z80_CLOCK (Z80_MASTER_CLOCK / 2) /* verified on pcb */
-#define I8035_MASTER_CLOCK XTAL_11MHz /* verified on pcb: 730Khz */
+#define I8035_MASTER_CLOCK XTAL(11'000'000) /* verified on pcb: 730Khz */
#define I8035_CLOCK (I8035_MASTER_CLOCK)
class mario_state : public driver_device