mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
Clarify documentation of maskbits
This commit is contained in:
parent
753ed7186c
commit
860585b0af
@ -24,8 +24,8 @@ jumptable: MACRO
|
|||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
maskbits: MACRO
|
maskbits: MACRO
|
||||||
; masks just enough bits to cover the first argument
|
; masks just enough bits to cover values 0 to \1 - 1
|
||||||
; the second argument is an optional shift amount
|
; \2 is an optional shift amount
|
||||||
; e.g. "maskbits 26" becomes "and %00011111" (since 26 - 1 = %00011001)
|
; e.g. "maskbits 26" becomes "and %00011111" (since 26 - 1 = %00011001)
|
||||||
; and "maskbits 3, 2" becomes "and %00001100" (since "maskbits 3" becomes %00000011)
|
; and "maskbits 3, 2" becomes "and %00001100" (since "maskbits 3" becomes %00000011)
|
||||||
; example usage in rejection sampling:
|
; example usage in rejection sampling:
|
||||||
|
Loading…
Reference in New Issue
Block a user