summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ginganin.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-02-20 11:43:18 -0500
committer AJR <ajrhacker@users.noreply.github.com>2018-02-20 11:49:55 -0500
commit5f9a1814876426ea28729704eec78f51a560f2bb (patch)
treeae54f0e9d06cbb847265ab77fe3e456a3fc9a61b /src/mame/drivers/ginganin.cpp
parent1b14b550b57fcafe68d9d203fb5723180db823f9 (diff)
6840ptm: Counter/timers are numbered from 1 to 3, not 0 to 2 as with 8253 (nw)
- Rename OUT0, OUT1 and OUT2 callback configuration macros to match pin names (O1, O2 and O3) - Update all verbose logging messages to be one-based - Remove unnecessary mentions of device type in logging messages
Diffstat (limited to 'src/mame/drivers/ginganin.cpp')
-rw-r--r--src/mame/drivers/ginganin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/ginganin.cpp b/src/mame/drivers/ginganin.cpp
index 465c7276d9e..466fc5d64bc 100644
--- a/src/mame/drivers/ginganin.cpp
+++ b/src/mame/drivers/ginganin.cpp
@@ -256,7 +256,7 @@ MACHINE_CONFIG_START(ginganin_state::ginganin)
MCFG_DEVICE_ADD("6840ptm", PTM6840, SOUND_CLOCK/2)
MCFG_PTM6840_EXTERNAL_CLOCKS(0, 0, 0)
- MCFG_PTM6840_OUT0_CB(WRITELINE(ginganin_state, ptm_irq))
+ MCFG_PTM6840_O1_CB(WRITELINE(ginganin_state, ptm_irq))
/* video hardware */
MCFG_SCREEN_ADD("screen", RASTER)