mirror of
https://github.com/gbdev/rgbds.git
synced 2026-09-18 03:37:06 +00:00
Remove extra parentheses in man page comment (#2066)
This commit is contained in:
+2
-2
@@ -2052,8 +2052,8 @@ It's possible to pass arguments to macros as well!
|
|||||||
MACRO lb
|
MACRO lb
|
||||||
ld \e1, (\e2) << 8 | (\e3)
|
ld \e1, (\e2) << 8 | (\e3)
|
||||||
ENDM
|
ENDM
|
||||||
lb hl, 20, 18 ; Expands to "ld hl, ((20) << 8) | (18)"
|
lb hl, 20, 18 ; Expands to "ld hl, (20) << 8 | (18)"
|
||||||
lb de, 3 + 1, NUM**2 ; Expands to "ld de, ((3 + 1) << 8) | (NUM**2)"
|
lb de, 3 + 1, NUM**2 ; Expands to "ld de, (3 + 1) << 8 | (NUM**2)"
|
||||||
.Ed
|
.Ed
|
||||||
.Pp
|
.Pp
|
||||||
You expand the arguments inside the macro body by using the escape sequences
|
You expand the arguments inside the macro body by using the escape sequences
|
||||||
|
|||||||
Reference in New Issue
Block a user