diff options
author | 2022-06-26 08:33:07 +1000 | |
---|---|---|
committer | 2022-06-26 08:33:07 +1000 | |
commit | 738aa5d074e236f62e174b9a6954ad64c7038564 (patch) | |
tree | b0b61c2ee2db4ed8464394c9dbf79c73126a921d /src/devices/cpu/dsp56156 | |
parent | 993109a4b7f0c87d98c3de8f9bcd2d43bdd15d9c (diff) |
srcclean and cleanup in preparation for branching MAME 0.245
Diffstat (limited to 'src/devices/cpu/dsp56156')
-rw-r--r-- | src/devices/cpu/dsp56156/dsp56mem.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/cpu/dsp56156/dsp56mem.cpp b/src/devices/cpu/dsp56156/dsp56mem.cpp index 9329ce12c09..d5bd5e485df 100644 --- a/src/devices/cpu/dsp56156/dsp56mem.cpp +++ b/src/devices/cpu/dsp56156/dsp56mem.cpp @@ -8,10 +8,10 @@ #include "dsp56pcu.h" #define LOG_OUTPUT_FUNC cpustate->device->logerror -#define LOG_INVALID (1 << 1U) -#define LOG_PERIPHERAL_READS (1 << 2U) -#define LOG_PERIPHERAL_WRITES (1 << 3U) -#define LOG_HOST_READS (1 << 4U) +#define LOG_INVALID (1 << 1U) +#define LOG_PERIPHERAL_READS (1 << 2U) +#define LOG_PERIPHERAL_WRITES (1 << 3U) +#define LOG_HOST_READS (1 << 4U) #define VERBOSE (0) #include "logmacro.h" @@ -808,7 +808,7 @@ void dsp56156_device::host_interface_write(uint8_t offset, uint8_t data) /* if (!host_interface_active()) { - LOGMASKED(LOG_INVALID, "%s: Host interface write called without HI being set active by the PBC.\n", cpustate->device->machine().describe_context()); + LOGMASKED(LOG_INVALID, "%s: Host interface write called without HI being set active by the PBC.\n", cpustate->device->machine().describe_context()); } */ @@ -908,7 +908,7 @@ uint8_t dsp56156_device::host_interface_read(uint8_t offset) /* if (!host_interface_active()) { - LOGMASKED(LOG_INVALID, "%s: Host interface write called without HI being set active by the PBC.\n", cpustate->device->machine().describe_context()); + LOGMASKED(LOG_INVALID, "%s: Host interface write called without HI being set active by the PBC.\n", cpustate->device->machine().describe_context()); } */ |