summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Joakim Larsson Edstrom <joakimlarsson42@gmail.com>2017-01-12 14:48:52 +0100
committer Joakim Larsson Edstrom <joakimlarsson42@gmail.com>2017-01-12 14:48:52 +0100
commite45d8efea1c65bc02990bafabb67d04ee36d2295 (patch)
tree7e3aba595e29be937c619a5b5b195ff88a901ced
parentf82ad755ae7b0c469fed5370184a028f7e993725 (diff)
fixed BIM template syntax and another PIT LOG macro
-rw-r--r--src/devices/machine/68153bim.h8
-rw-r--r--src/devices/machine/68230pit.cpp2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/machine/68153bim.h b/src/devices/machine/68153bim.h
index 98432916e7d..414abebf1b6 100644
--- a/src/devices/machine/68153bim.h
+++ b/src/devices/machine/68153bim.h
@@ -59,13 +59,13 @@
// LOCAL IACK callbacks emulating the INTAL0 and INTAL1 outputs for INTAE requesting a vector from a sub device
#define MCFG_BIM68153_OUT_IACK0_CB(_devcb) \
- devcb = &bim68153::set_out_iack1_callback(*device, DEVCB_##_devcb);
+ devcb = &bim68153_device::set_out_iack0_callback(*device, DEVCB_##_devcb);
#define MCFG_BIM68153_OUT_IACK1_CB(_devcb) \
- devcb = &bim68153::set_out_iack2_callback(*device, DEVCB_##_devcb);
+ devcb = &bim68153_device::set_out_iack1_callback(*device, DEVCB_##_devcb);
#define MCFG_BIM68153_OUT_IACK2_CB(_devcb) \
- devcb = &bim68153::set_out_iack3_callback(*device, DEVCB_##_devcb);
+ devcb = &bim68153_device::set_out_iack2_callback(*device, DEVCB_##_devcb);
#define MCFG_BIM68153_OUT_IACK3_CB(_devcb) \
- devcb = &bim68153::set_out_iack3_callback(*device, DEVCB_##_devcb);
+ devcb = &bim68153_device::set_out_iack3_callback(*device, DEVCB_##_devcb);
//**************************************************************************
// TYPE DEFINITIONS
diff --git a/src/devices/machine/68230pit.cpp b/src/devices/machine/68230pit.cpp
index 922e9e4c743..2e03051727a 100644
--- a/src/devices/machine/68230pit.cpp
+++ b/src/devices/machine/68230pit.cpp
@@ -849,7 +849,7 @@ uint8_t pit68230_device::rr_pitreg_pcdr()
m_pcdr |= (m_pcil & ~m_pcddr);
}
- if (m_pcdr != 0) { LOGDR(("%s %s <- %02x\n",tag(), FUNCNAME, m_pcdr)); }
+ if (m_pcdr != 0) { LOGDR("%s %s <- %02x\n",tag(), FUNCNAME, m_pcdr); }
return m_pcdr;
}