summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/mc68328.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2021-11-21 14:14:44 +1100
committer Vas Crabb <vas@vastheman.com>2021-11-21 14:14:44 +1100
commit637eaca7a4ee0f7ca01162931806ac4d65e56630 (patch)
tree43a8bd97b49d54f8de086dd76e9c82036c629f69 /src/devices/machine/mc68328.cpp
parent7a68283de7f328af7bae232a41947c4d760c5dd3 (diff)
srcclean in preparation for release of MAME 0.238.
Patched up positron.cpp input ports - you shouldn’t use PORT_NAME when the key cap label is just the characters it produces anyway, and you’re supposed to use the actual character a key produces for PORT_CHAR or "natural" keyboard mode/paste will be unnatural.
Diffstat (limited to 'src/devices/machine/mc68328.cpp')
-rw-r--r--src/devices/machine/mc68328.cpp52
1 files changed, 26 insertions, 26 deletions
diff --git a/src/devices/machine/mc68328.cpp b/src/devices/machine/mc68328.cpp
index 9ecce201f66..4699054dae9 100644
--- a/src/devices/machine/mc68328.cpp
+++ b/src/devices/machine/mc68328.cpp
@@ -11,34 +11,34 @@
#include "emu.h"
#include "machine/mc68328.h"
-#define LOG_SCR (1U << 1)
-#define LOG_CS_GRP (1U << 2)
-#define LOG_CS_SEL (1U << 3)
-#define LOG_PLL (1U << 4)
-#define LOG_INTS (1U << 5)
-#define LOG_GPIO_A (1U << 6)
-#define LOG_GPIO_B (1U << 7)
-#define LOG_GPIO_C (1U << 8)
-#define LOG_GPIO_D (1U << 9)
-#define LOG_GPIO_E (1U << 10)
-#define LOG_GPIO_F (1U << 11)
-#define LOG_GPIO_G (1U << 12)
-#define LOG_GPIO_J (1U << 13)
-#define LOG_GPIO_K (1U << 14)
-#define LOG_GPIO_M (1U << 15)
-#define LOG_PWM (1U << 16)
-#define LOG_TIMERS (1U << 17)
-#define LOG_TSTAT (1U << 18)
-#define LOG_WATCHDOG (1U << 19)
-#define LOG_SPIS (1U << 20)
-#define LOG_SPIM (1U << 21)
-#define LOG_UART (1U << 22)
-#define LOG_LCD (1U << 23)
-#define LOG_RTC (1U << 24)
-#define LOG_ALL (LOG_SCR | LOG_CS_GRP | LOG_CS_SEL | LOG_PLL | LOG_INTS | LOG_GPIO_A | LOG_GPIO_B | LOG_GPIO_C | LOG_GPIO_D | LOG_GPIO_E \
+#define LOG_SCR (1U << 1)
+#define LOG_CS_GRP (1U << 2)
+#define LOG_CS_SEL (1U << 3)
+#define LOG_PLL (1U << 4)
+#define LOG_INTS (1U << 5)
+#define LOG_GPIO_A (1U << 6)
+#define LOG_GPIO_B (1U << 7)
+#define LOG_GPIO_C (1U << 8)
+#define LOG_GPIO_D (1U << 9)
+#define LOG_GPIO_E (1U << 10)
+#define LOG_GPIO_F (1U << 11)
+#define LOG_GPIO_G (1U << 12)
+#define LOG_GPIO_J (1U << 13)
+#define LOG_GPIO_K (1U << 14)
+#define LOG_GPIO_M (1U << 15)
+#define LOG_PWM (1U << 16)
+#define LOG_TIMERS (1U << 17)
+#define LOG_TSTAT (1U << 18)
+#define LOG_WATCHDOG (1U << 19)
+#define LOG_SPIS (1U << 20)
+#define LOG_SPIM (1U << 21)
+#define LOG_UART (1U << 22)
+#define LOG_LCD (1U << 23)
+#define LOG_RTC (1U << 24)
+#define LOG_ALL (LOG_SCR | LOG_CS_GRP | LOG_CS_SEL | LOG_PLL | LOG_INTS | LOG_GPIO_A | LOG_GPIO_B | LOG_GPIO_C | LOG_GPIO_D | LOG_GPIO_E \
| LOG_GPIO_F | LOG_GPIO_G | LOG_GPIO_J | LOG_GPIO_K | LOG_GPIO_M | LOG_PWM | LOG_TIMERS | LOG_TSTAT | LOG_WATCHDOG | LOG_SPIS \
| LOG_SPIM | LOG_UART | LOG_LCD | LOG_RTC)
-#define VERBOSE (0)
+#define VERBOSE (0)
#include "logmacro.h"