mirror of
https://github.com/thornAvery/kep-hack.git
synced 2026-02-06 23:55:24 +13:00
Manually merge pokecrystal audio files
and remove more CrystalComplete leftovers
This commit is contained in:
parent
094594bffb
commit
735d5bd4c2
189 changed files with 9015 additions and 41631 deletions
|
|
@ -109,7 +109,11 @@ ENDM
|
|||
|
||||
; macro for two nibbles
|
||||
dn: MACRO
|
||||
db (\1 << 4 | \2)
|
||||
rept _NARG / 2
|
||||
db ((\1) << 4) | (\2)
|
||||
shift
|
||||
shift
|
||||
endr
|
||||
ENDM
|
||||
|
||||
; macro for putting a byte then a word
|
||||
|
|
|
|||
|
|
@ -1,7 +1,11 @@
|
|||
|
||||
; Constant enumeration is useful for monsters, items, moves, etc.
|
||||
const_def: MACRO
|
||||
if _NARG >= 1
|
||||
const_value = \1
|
||||
else
|
||||
const_value = 0
|
||||
endc
|
||||
ENDM
|
||||
|
||||
const: MACRO
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue