From 9df04e97f528b9df842b5f28ce013c4fd2e32ff5 Mon Sep 17 00:00:00 2001 From: AJR Date: Sun, 26 Feb 2023 13:42:46 -0500 Subject: [PATCH] cpu/psx: Fix mistakes in last commit --- src/devices/cpu/psx/mdec.cpp | 2 +- src/devices/cpu/psx/rcnt.cpp | 2 +- src/devices/cpu/psx/sio.cpp | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/devices/cpu/psx/mdec.cpp b/src/devices/cpu/psx/mdec.cpp index 841841f1424..4ef7d827ba2 100644 --- a/src/devices/cpu/psx/mdec.cpp +++ b/src/devices/cpu/psx/mdec.cpp @@ -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") diff --git a/src/devices/cpu/psx/rcnt.cpp b/src/devices/cpu/psx/rcnt.cpp index ce002c2adf7..6a526f208fd 100644 --- a/src/devices/cpu/psx/rcnt.cpp +++ b/src/devices/cpu/psx/rcnt.cpp @@ -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") diff --git a/src/devices/cpu/psx/sio.cpp b/src/devices/cpu/psx/sio.cpp index a5a3aedba42..ee5af25b6a7 100644 --- a/src/devices/cpu/psx/sio.cpp +++ b/src/devices/cpu/psx/sio.cpp @@ -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;