summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/rf5c296.cpp
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2018-04-13 16:32:23 +0100
committer smf- <smf-@users.noreply.github.com>2018-04-13 16:41:37 +0100
commit1a27a251f819ecd7990a21d1b1c5ef82355b63c2 (patch)
treee64a720ca63495737ea5536cc90408343a4feff1 /src/devices/machine/rf5c296.cpp
parent603b5bfd61ed3b9968c268aaa9cb13ebb6801ec6 (diff)
remove safe_pc() and safe_pcbase() (nw)
Diffstat (limited to 'src/devices/machine/rf5c296.cpp')
-rw-r--r--src/devices/machine/rf5c296.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/rf5c296.cpp b/src/devices/machine/rf5c296.cpp
index 7627c0280aa..ee6d3e0ea54 100644
--- a/src/devices/machine/rf5c296.cpp
+++ b/src/devices/machine/rf5c296.cpp
@@ -22,7 +22,7 @@ void rf5c296_device::device_start()
void rf5c296_device::reg_w(ATTR_UNUSED uint8_t reg, uint8_t data)
{
- // fprintf(stderr, "rf5c296_reg_w %02x, %02x (%s)\n", reg, data, machine().describe_context());
+ // fprintf(stderr, "%s rf5c296_reg_w %02x, %02x\n", machine().describe_context().c_str(), reg, data);
switch (reg)
{
// Interrupt and General Control Register
@@ -41,7 +41,7 @@ void rf5c296_device::reg_w(ATTR_UNUSED uint8_t reg, uint8_t data)
uint8_t rf5c296_device::reg_r(ATTR_UNUSED uint8_t reg)
{
- // fprintf(stderr, "rf5c296_reg_r %02x (%s)\n", reg, machine().describe_context());
+ // fprintf(stderr, "%s rf5c296_reg_r %02x\n", machine().describe_context().c_str(), reg);
return 0x00;
}