summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mario.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-01-11 15:22:56 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-01-11 15:22:56 +0000
commit73d0923d7f5d5cbddb3995460741f80358c4d7ff (patch)
tree0eca12ec45a9f673910003962d4a674b0367e46c /src/mame/drivers/mario.c
parent8e79f0b4f0f5efbde993c6bf25c61a42a802da86 (diff)
Cleanups for 0.122u5.
Diffstat (limited to 'src/mame/drivers/mario.c')
-rw-r--r--src/mame/drivers/mario.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/mario.c b/src/mame/drivers/mario.c
index 7b359d11d79..d98bc504bcb 100644
--- a/src/mame/drivers/mario.c
+++ b/src/mame/drivers/mario.c
@@ -1,11 +1,11 @@
/***************************************************************************
TODO:
- - start up sound (Sound #2 should play but does not
+ - start up sound (Sound #2 should play but does not
Done:
- discrete sound
- - hooked up z80dma
+ - hooked up z80dma
- combined memory maps
- statics in mario_state struct
- fixed save state issues
@@ -361,7 +361,7 @@ static MACHINE_DRIVER_START( mario_base )
MDRV_CPU_PROGRAM_MAP(mario_map, 0)
MDRV_CPU_IO_MAP(0,mario_writeport)
MDRV_CPU_VBLANK_INT(nmi_line_pulse,1)
-
+
MDRV_MACHINE_START(mario)
MDRV_MACHINE_RESET(mario)
@@ -381,7 +381,7 @@ MACHINE_DRIVER_END
static MACHINE_DRIVER_START( mario )
/* basic machine hardware */
- MDRV_IMPORT_FROM(mario_base )
+ MDRV_IMPORT_FROM(mario_base )
/* sound hardware */
MDRV_IMPORT_FROM(mario_audio)
@@ -391,13 +391,13 @@ MACHINE_DRIVER_END
static MACHINE_DRIVER_START( masao )
/* basic machine hardware */
- MDRV_IMPORT_FROM(mario_base )
-
+ MDRV_IMPORT_FROM(mario_base )
+
MDRV_CPU_REPLACE("main", Z80, 4000000) /* 4.000 MHz (?) */
MDRV_CPU_PROGRAM_MAP(masao_map, 0)
MDRV_CPU_IO_MAP(0,mario_writeport)
MDRV_CPU_VBLANK_INT(nmi_line_pulse,1)
-
+
/* sound hardware */
MDRV_IMPORT_FROM(masao_audio)
MACHINE_DRIVER_END