summaryrefslogtreecommitdiff
path: root/macros/enum.asm
diff options
context:
space:
mode:
Diffstat (limited to 'macros/enum.asm')
-rw-r--r--macros/enum.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/enum.asm b/macros/enum.asm
index aee6ee530..50a136ba9 100644
--- a/macros/enum.asm
+++ b/macros/enum.asm
@@ -31,6 +31,6 @@ const_value = const_value + 1
ENDM
shift_const: MACRO
-\1 EQU 1 << const_value
+\1 EQU (1 << const_value)
const_value = const_value + 1
ENDM