├── .gitignore ├── README.md ├── attack ├── attack_arm9_freespace.asm ├── attack_overlay0000.asm └── attack_overlay0017.asm ├── compile.asm ├── compile.bat ├── interact ├── interact_arm9_freespace.asm └── interact_overlay0017.asm ├── macros.asm ├── movement ├── movement_arm9_freespace.asm ├── movement_overlay0017.asm ├── movement_overlay0024.asm └── movement_overlay0093.asm ├── unpack └── README.txt └── util.asm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StraDaMa/Legend-of-Zelda-Spirit-Tracks-D-Pad-Patch/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StraDaMa/Legend-of-Zelda-Spirit-Tracks-D-Pad-Patch/HEAD/README.md -------------------------------------------------------------------------------- /attack/attack_arm9_freespace.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StraDaMa/Legend-of-Zelda-Spirit-Tracks-D-Pad-Patch/HEAD/attack/attack_arm9_freespace.asm -------------------------------------------------------------------------------- /attack/attack_overlay0000.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StraDaMa/Legend-of-Zelda-Spirit-Tracks-D-Pad-Patch/HEAD/attack/attack_overlay0000.asm -------------------------------------------------------------------------------- /attack/attack_overlay0017.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StraDaMa/Legend-of-Zelda-Spirit-Tracks-D-Pad-Patch/HEAD/attack/attack_overlay0017.asm -------------------------------------------------------------------------------- /compile.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StraDaMa/Legend-of-Zelda-Spirit-Tracks-D-Pad-Patch/HEAD/compile.asm -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- 1 | python build.py 2 | pause -------------------------------------------------------------------------------- /interact/interact_arm9_freespace.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StraDaMa/Legend-of-Zelda-Spirit-Tracks-D-Pad-Patch/HEAD/interact/interact_arm9_freespace.asm -------------------------------------------------------------------------------- /interact/interact_overlay0017.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StraDaMa/Legend-of-Zelda-Spirit-Tracks-D-Pad-Patch/HEAD/interact/interact_overlay0017.asm -------------------------------------------------------------------------------- /macros.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StraDaMa/Legend-of-Zelda-Spirit-Tracks-D-Pad-Patch/HEAD/macros.asm -------------------------------------------------------------------------------- /movement/movement_arm9_freespace.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StraDaMa/Legend-of-Zelda-Spirit-Tracks-D-Pad-Patch/HEAD/movement/movement_arm9_freespace.asm -------------------------------------------------------------------------------- /movement/movement_overlay0017.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StraDaMa/Legend-of-Zelda-Spirit-Tracks-D-Pad-Patch/HEAD/movement/movement_overlay0017.asm -------------------------------------------------------------------------------- /movement/movement_overlay0024.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StraDaMa/Legend-of-Zelda-Spirit-Tracks-D-Pad-Patch/HEAD/movement/movement_overlay0024.asm -------------------------------------------------------------------------------- /movement/movement_overlay0093.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StraDaMa/Legend-of-Zelda-Spirit-Tracks-D-Pad-Patch/HEAD/movement/movement_overlay0093.asm -------------------------------------------------------------------------------- /unpack/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StraDaMa/Legend-of-Zelda-Spirit-Tracks-D-Pad-Patch/HEAD/unpack/README.txt -------------------------------------------------------------------------------- /util.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StraDaMa/Legend-of-Zelda-Spirit-Tracks-D-Pad-Patch/HEAD/util.asm --------------------------------------------------------------------------------