summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tp84.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-03-30 08:48:16 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-03-30 08:48:16 +0000
commita1d6c21cb38e1557b88514de2e41e8444996ab43 (patch)
treec1fa40b78f92abfbaf989ef13fb512fac781769c /src/mame/drivers/tp84.c
parentf9d37368d47a78daa17399732ce5073735c38b11 (diff)
Removed msb/lsb handlers from taitosnd. Updated all drivers to
call the 8-bit versions directly from the address maps. Also did bulk replace of AM_READ/WRITE(SMH_NOP) -> AM_READ/WRITENOP
Diffstat (limited to 'src/mame/drivers/tp84.c')
-rw-r--r--src/mame/drivers/tp84.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/tp84.c b/src/mame/drivers/tp84.c
index 009ddacabf3..b3dd606c84b 100644
--- a/src/mame/drivers/tp84.c
+++ b/src/mame/drivers/tp84.c
@@ -195,7 +195,7 @@ static ADDRESS_MAP_START( audio_map, ADDRESS_SPACE_PROGRAM, 8 )
AM_RANGE(0x6000, 0x6000) AM_READ(soundlatch_r)
AM_RANGE(0x8000, 0x8000) AM_READ(tp84_sh_timer_r)
AM_RANGE(0xa000, 0xa1ff) AM_WRITE(tp84_filter_w)
- AM_RANGE(0xc000, 0xc000) AM_WRITE(SMH_NOP)
+ AM_RANGE(0xc000, 0xc000) AM_WRITENOP
AM_RANGE(0xc001, 0xc001) AM_DEVWRITE("sn1", sn76496_w)
AM_RANGE(0xc003, 0xc003) AM_DEVWRITE("sn2", sn76496_w)
AM_RANGE(0xc004, 0xc004) AM_DEVWRITE("sn3", sn76496_w)