cpu/psx: Fix mistakes in last commit

This commit is contained in:
AJR 2023-02-26 13:42:46 -05:00
parent bd59a0d447
commit 9df04e97f5
3 changed files with 5 additions and 5 deletions

View File

@ -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")

View File

@ -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")

View File

@ -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;