summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author stephh <stephh@users.noreply.github.com>2008-02-12 18:45:33 +0000
committer stephh <stephh@users.noreply.github.com>2008-02-12 18:45:33 +0000
commite2cdf5e9f7d4265a26e4d4c3d962ac0b839c658e (patch)
treec9eec158103a0f34e0109af946aea363391d26f0
parentd3cc7e0dd460aa4c51048b9dcf30a8d733245867 (diff)
Fixed 'mario' and 'masao' memory maps to match the Dip Switches port name.
-rw-r--r--src/mame/drivers/mario.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/mario.c b/src/mame/drivers/mario.c
index 244134a12af..bd530b880d9 100644
--- a/src/mame/drivers/mario.c
+++ b/src/mame/drivers/mario.c
@@ -175,7 +175,7 @@ static ADDRESS_MAP_START( mario_map, ADDRESS_SPACE_PROGRAM, 8 )
AM_RANGE(0x7e84, 0x7e84) AM_WRITE(interrupt_enable_w)
AM_RANGE(0x7e85, 0x7e85) AM_WRITE(z80dma_0_rdy_w) /* ==> DMA Chip */
AM_RANGE(0x7f00, 0x7f07) AM_WRITE(mario_sh3_w) /* Sound port */
- AM_RANGE(0x7f80, 0x7f80) AM_READ_PORT("DSW0") /* DSW */
+ AM_RANGE(0x7f80, 0x7f80) AM_READ_PORT("DSW") /* DSW */
AM_RANGE(0x7e00, 0x7e00) AM_WRITE(mario_sh_tuneselect_w)
AM_RANGE(0xf000, 0xffff) AM_ROM
ADDRESS_MAP_END
@@ -195,7 +195,7 @@ static ADDRESS_MAP_START( masao_map, ADDRESS_SPACE_PROGRAM, 8 )
AM_RANGE(0x7e84, 0x7e84) AM_WRITE(interrupt_enable_w)
AM_RANGE(0x7e85, 0x7e85) AM_WRITE(z80dma_0_rdy_w) /* ==> DMA Chip */
AM_RANGE(0x7f00, 0x7f00) AM_WRITE(masao_sh_irqtrigger_w)
- AM_RANGE(0x7f80, 0x7f80) AM_READ_PORT("DSW0") /* DSW */
+ AM_RANGE(0x7f80, 0x7f80) AM_READ_PORT("DSW") /* DSW */
AM_RANGE(0xf000, 0xffff) AM_ROM
ADDRESS_MAP_END