summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hotblock.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-04-16 08:04:20 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-04-16 08:04:20 +0000
commit67663501d7a646a5d4f43fc9c054d99bf3ce2544 (patch)
tree49beebd42271006da0c177515ecbf1f31a31b079 /src/mame/drivers/hotblock.c
parent72d93bb509f7ba670c27850f58fe10ce09844a93 (diff)
Moved eminline and related files into /src/osd since it's system related (nw)
Moved delegates into /src/lib/util to enable usage of delegates in other project parts Moved mame_printf_* calls into /src/osd/osdcore.c and renamed them to osd_printf_* Changed mess.mak to display compilation of ymmu100.ppm nicely
Diffstat (limited to 'src/mame/drivers/hotblock.c')
-rw-r--r--src/mame/drivers/hotblock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/hotblock.c b/src/mame/drivers/hotblock.c
index 8f58a3b1214..e51a83b03fa 100644
--- a/src/mame/drivers/hotblock.c
+++ b/src/mame/drivers/hotblock.c
@@ -93,14 +93,14 @@ READ8_MEMBER(hotblock_state::hotblock_video_read)
/* port 4 is some kind of eeprom / storage .. used to store the scores */
READ8_MEMBER(hotblock_state::hotblock_port4_r)
{
-// mame_printf_debug("port4_r\n");
+// osd_printf_debug("port4_r\n");
return 0x00;
}
WRITE8_MEMBER(hotblock_state::hotblock_port4_w)
{
-// mame_printf_debug("port4_w: pc = %06x : data %04x\n", space.device().safe_pc(), data);
+// osd_printf_debug("port4_w: pc = %06x : data %04x\n", space.device().safe_pc(), data);
// popmessage("port4_w: pc = %06x : data %04x", space.device().safe_pc(), data);
m_port4 = data;