├── .gitattributes ├── LIB ├── N64.INC ├── N64_BOOTCODE.BIN ├── N64_GFX.INC └── N64_RSP.INC ├── README.md └── pif_rom_dumper.asm /.gitattributes: -------------------------------------------------------------------------------- 1 | LIB/* linguist-vendored 2 | -------------------------------------------------------------------------------- /LIB/N64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcs64/pif_rom_dumper/HEAD/LIB/N64.INC -------------------------------------------------------------------------------- /LIB/N64_BOOTCODE.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcs64/pif_rom_dumper/HEAD/LIB/N64_BOOTCODE.BIN -------------------------------------------------------------------------------- /LIB/N64_GFX.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcs64/pif_rom_dumper/HEAD/LIB/N64_GFX.INC -------------------------------------------------------------------------------- /LIB/N64_RSP.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcs64/pif_rom_dumper/HEAD/LIB/N64_RSP.INC -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcs64/pif_rom_dumper/HEAD/README.md -------------------------------------------------------------------------------- /pif_rom_dumper.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcs64/pif_rom_dumper/HEAD/pif_rom_dumper.asm --------------------------------------------------------------------------------