From ab0f9c287a45d1986985545d7ec6a2cd862e26fc Mon Sep 17 00:00:00 2001 From: Rangi Date: Tue, 23 Nov 2021 20:18:08 -0500 Subject: Use compound assignment operators --- macros/code.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'macros/code.asm') diff --git a/macros/code.asm b/macros/code.asm index 89e7c6e90..6e76febb8 100644 --- a/macros/code.asm +++ b/macros/code.asm @@ -38,7 +38,7 @@ maskbits: MACRO x = 1 rept 8 if x + 1 < (\1) -x = x << 1 | 1 +x = (x << 1) | 1 endc endr if _NARG == 2 -- cgit v1.2.3