diff options
| author | IIMarckus <iimarckus@gmail.com> | 2014-04-06 08:52:55 -0600 |
|---|---|---|
| committer | IIMarckus <iimarckus@gmail.com> | 2014-04-06 08:52:55 -0600 |
| commit | 7f8974dab5c6c307a8e15e139dfab9264fcc639f (patch) | |
| tree | 0e23869f299671f7c9bb2f4ab2d486071e4e44c3 /macros.asm | |
| parent | combine audio and music folders (diff) | |
| parent | "Fix" name indentation in credits. (diff) | |
| download | pokeyellow-7f8974dab5c6c307a8e15e139dfab9264fcc639f.tar.gz pokeyellow-7f8974dab5c6c307a8e15e139dfab9264fcc639f.tar.xz pokeyellow-7f8974dab5c6c307a8e15e139dfab9264fcc639f.zip | |
Merge https://github.com/yenatch/pokered
Conflicts:
main.asm
Diffstat (limited to 'macros.asm')
| -rw-r--r-- | macros.asm | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -54,11 +54,17 @@ IMAP: MACRO ; imap mapid_less_than,x-coordinate,y-coordinate,textpointer ENDM ; tilesets' headers macro -TSETHEAD: MACRO - db BANK(\2) - dw \1,\2,\3 - db \4,\5,\6,\7,\8 +tileset: MACRO + db BANK(\2) ; BANK(GFX) + dw \1, \2, \3 ; Block, GFX, Coll + db \4, \5, \6 ; counter tiles + db \7 ; grass tile + db \8 ; permission (indoor, cave, outdoor) ENDM + +INDOOR EQU 0 +CAVE EQU 1 +OUTDOOR EQU 2 ; macro for two nibbles dn: MACRO |
