Manually merge pokecrystal audio files

and remove more CrystalComplete leftovers
This commit is contained in:
dannye 2019-04-20 18:26:43 -05:00
parent 094594bffb
commit 735d5bd4c2
189 changed files with 9015 additions and 41631 deletions

View file

@ -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

View file

@ -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