diff options
author | 2014-04-16 08:04:20 +0000 | |
---|---|---|
committer | 2014-04-16 08:04:20 +0000 | |
commit | 67663501d7a646a5d4f43fc9c054d99bf3ce2544 (patch) | |
tree | 49beebd42271006da0c177515ecbf1f31a31b079 /src/mess/machine | |
parent | 72d93bb509f7ba670c27850f58fe10ce09844a93 (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/mess/machine')
-rw-r--r-- | src/mess/machine/dccons.c | 4 | ||||
-rw-r--r-- | src/mess/machine/kc.c | 2 | ||||
-rw-r--r-- | src/mess/machine/thomflop.c | 2 | ||||
-rw-r--r-- | src/mess/machine/thomson.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/mess/machine/dccons.c b/src/mess/machine/dccons.c index c5ad881d3f8..1e12552a2d6 100644 --- a/src/mess/machine/dccons.c +++ b/src/mess/machine/dccons.c @@ -44,7 +44,7 @@ TIMER_CALLBACK_MEMBER(dc_cons_state::atapi_xfer_end ) printf("atapi_xfer_end atapi_xferlen = %d\n", atapi_xferlen ); - //mame_printf_debug("ATAPI: xfer_end. xferlen = %d\n", atapi_xferlen); + //osd_printf_debug("ATAPI: xfer_end. xferlen = %d\n", atapi_xferlen); m_ata->write_dmack(1); @@ -134,7 +134,7 @@ READ32_MEMBER(dc_cons_state::dc_mess_g1_ctrl_r ) WRITE32_MEMBER(dc_cons_state::dc_mess_g1_ctrl_w ) { g1bus_regs[offset] = data; // 5f7400+reg*4=dat -// mame_printf_verbose("G1CTRL: [%08x=%x] write %" I64FMT "x to %x, mask %" I64FMT "x\n", 0x5f7400+reg*4, dat, data, offset, mem_mask); +// osd_printf_verbose("G1CTRL: [%08x=%x] write %" I64FMT "x to %x, mask %" I64FMT "x\n", 0x5f7400+reg*4, dat, data, offset, mem_mask); switch (offset) { case SB_GDST: diff --git a/src/mess/machine/kc.c b/src/mess/machine/kc.c index 6c6815e792c..82e1f9d3c04 100644 --- a/src/mess/machine/kc.c +++ b/src/mess/machine/kc.c @@ -50,7 +50,7 @@ QUICKLOAD_LOAD_MEMBER( kc_state,kc) if (datasize > size - 128) { - mame_printf_info("Invalid snapshot size: expected 0x%04x, found 0x%04x\n", datasize, (UINT32)size - 128); + osd_printf_info("Invalid snapshot size: expected 0x%04x, found 0x%04x\n", datasize, (UINT32)size - 128); datasize = size - 128; } diff --git a/src/mess/machine/thomflop.c b/src/mess/machine/thomflop.c index c8a98d2d97b..e9b6af43a8a 100644 --- a/src/mess/machine/thomflop.c +++ b/src/mess/machine/thomflop.c @@ -12,7 +12,7 @@ #define VERBOSE 0 /* 0, 1 or 2 */ -#define PRINT(x) mame_printf_info x +#define PRINT(x) osd_printf_info x #define LOG(x) do { if (VERBOSE > 0) logerror x; } while (0) #define VLOG(x) do { if (VERBOSE > 1) logerror x; } while (0) diff --git a/src/mess/machine/thomson.c b/src/mess/machine/thomson.c index e2896a81e03..de5e6a9c8ac 100644 --- a/src/mess/machine/thomson.c +++ b/src/mess/machine/thomson.c @@ -21,7 +21,7 @@ #define VERBOSE_IO 0 /* serial & parallel I/O */ #define VERBOSE_MIDI 0 -#define PRINT(x) mame_printf_info x +#define PRINT(x) osd_printf_info x #define LOG(x) do { if (VERBOSE) logerror x; } while (0) #define VLOG(x) do { if (VERBOSE > 1) logerror x; } while (0) |