mirror of
https://github.com/holub/mame
synced 2025-04-21 16:01:56 +03:00
cpu/psx: Fix mistakes in last commit
This commit is contained in:
parent
bd59a0d447
commit
9df04e97f5
@ -17,7 +17,7 @@
|
||||
#define LOG_COMMAND (1U << 2)
|
||||
|
||||
#define VERBOSE ( 0 )
|
||||
#include "logerror.h"
|
||||
#include "logmacro.h"
|
||||
|
||||
DEFINE_DEVICE_TYPE(PSX_MDEC, psxmdec_device, "psxmdec", "Sony PSX MDEC")
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include "rcnt.h"
|
||||
|
||||
#define VERBOSE ( 0 )
|
||||
#include "logerror.h"
|
||||
#include "logmacro.h"
|
||||
|
||||
DEFINE_DEVICE_TYPE(PSX_RCNT, psxrcnt_device, "psxrcnt", "Sony PSX RCNT")
|
||||
|
||||
|
@ -13,8 +13,8 @@
|
||||
//#define LOG_GENERAL (1U << 0)
|
||||
#define LOG_TIMER (1U << 1)
|
||||
|
||||
#define VERBOSE_LEVEL ( 0 )
|
||||
#include "logerror.h"
|
||||
#define VERBOSE ( 0 )
|
||||
#include "logmacro.h"
|
||||
|
||||
DEFINE_DEVICE_TYPE(PSX_SIO0, psxsio0_device, "psxsio0", "Sony PSX SIO-0")
|
||||
DEFINE_DEVICE_TYPE(PSX_SIO1, psxsio1_device, "psxsio1", "Sony PSX SIO-1")
|
||||
@ -323,7 +323,7 @@ uint32_t psxsio_device::read(offs_t offset, uint32_t mem_mask)
|
||||
break;
|
||||
default:
|
||||
data = 0;
|
||||
logerror( "%s: psx_sio_r( %08x, %08x ) %08x\n", machine().describe_context() offset, mem_mask, data );
|
||||
logerror( "%s: psx_sio_r( %08x, %08x ) %08x\n", machine().describe_context(), offset, mem_mask, data );
|
||||
break;
|
||||
}
|
||||
return data;
|
||||
|
Loading…
Reference in New Issue
Block a user