├── Makefile ├── README.md ├── arm7 ├── Makefile ├── data │ └── font8x8.pat └── source │ ├── armwrestler-ds.s │ └── thumbwrestler-ds.s ├── arm9 ├── Makefile └── source │ └── armwrestler-arm9.s ├── template.pnproj └── template.prj /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/arm7wrestler/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/arm7wrestler/HEAD/README.md -------------------------------------------------------------------------------- /arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/arm7wrestler/HEAD/arm7/Makefile -------------------------------------------------------------------------------- /arm7/data/font8x8.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/arm7wrestler/HEAD/arm7/data/font8x8.pat -------------------------------------------------------------------------------- /arm7/source/armwrestler-ds.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/arm7wrestler/HEAD/arm7/source/armwrestler-ds.s -------------------------------------------------------------------------------- /arm7/source/thumbwrestler-ds.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/arm7wrestler/HEAD/arm7/source/thumbwrestler-ds.s -------------------------------------------------------------------------------- /arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/arm7wrestler/HEAD/arm9/Makefile -------------------------------------------------------------------------------- /arm9/source/armwrestler-arm9.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/arm7wrestler/HEAD/arm9/source/armwrestler-arm9.s -------------------------------------------------------------------------------- /template.pnproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/arm7wrestler/HEAD/template.pnproj -------------------------------------------------------------------------------- /template.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/arm7wrestler/HEAD/template.prj --------------------------------------------------------------------------------