summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/arm7/arm7help.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/arm7/arm7help.h')
-rw-r--r--src/devices/cpu/arm7/arm7help.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/devices/cpu/arm7/arm7help.h b/src/devices/cpu/arm7/arm7help.h
index a62722accfa..544cbbbd269 100644
--- a/src/devices/cpu/arm7/arm7help.h
+++ b/src/devices/cpu/arm7/arm7help.h
@@ -160,8 +160,3 @@
#define WRITE32(addr,data) arm7_cpu_write32(addr,data)
#define PTR_READ32 &arm7_cpu_read32
#define PTR_WRITE32 &arm7_cpu_write32
-
-#define LSL(v, s) ((v) << (s))
-#define LSR(v, s) ((v) >> (s))
-#define ROL(v, s) (LSL((v), (s)) | (LSR((v), 32u - (s))))
-#define ROR(v, s) (LSR((v), (s)) | (LSL((v), 32u - (s))))