diff --git a/source/nand/virtual.c b/source/nand/virtual.c index c226a06..766d055 100644 --- a/source/nand/virtual.c +++ b/source/nand/virtual.c @@ -28,14 +28,14 @@ VirtualFile virtualFileTemplates[] = { { "nand_minsize.bin" , 0x00000000, 0x4D800000, 0xFF, VFLAG_ON_N3DS | VFLAG_ON_NO3DS }, { "sector0x96.bin" , 0x00012C00, 0x00000200, 0xFF, VFLAG_ON_NAND }, { "nand_hdr.bin" , 0x00000000, 0x00000200, 0xFF, VFLAG_ON_NAND }, - { "itcm.dmp" , 0x01FF8000, 0x00008000, 0xFF, VFLAG_ON_MEMORY }, - { "arm9internal.dmp" , 0x08000000, 0x00100000, 0xFF, VFLAG_ON_MEMORY }, - { "vram.dmp" , 0x18000000, 0x00600000, 0xFF, VFLAG_ON_MEMORY }, - { "dsp.dmp" , 0x1FF00000, 0x00080000, 0xFF, VFLAG_ON_MEMORY }, - { "axiwram.dmp" , 0x1FF80000, 0x00080000, 0xFF, VFLAG_ON_MEMORY }, - { "fcram.dmp" , 0x20000000, 0x08000000, 0xFF, VFLAG_ON_MEMORY }, - { "dtcm.dmp" , 0xFFFF0000, 0x00004000, 0xFF, VFLAG_ON_MEMORY }, - { "bootrom_unp.dmp" , 0xFFFF0000, 0x00008000, 0xFF, VFLAG_ON_MEMORY } + { "itcm.mem" , 0x01FF8000, 0x00008000, 0xFF, VFLAG_ON_MEMORY }, + { "arm9internal.mem" , 0x08000000, 0x00100000, 0xFF, VFLAG_ON_MEMORY }, + { "vram.mem" , 0x18000000, 0x00600000, 0xFF, VFLAG_ON_MEMORY }, + { "dsp.mem" , 0x1FF00000, 0x00080000, 0xFF, VFLAG_ON_MEMORY }, + { "axiwram.mem" , 0x1FF80000, 0x00080000, 0xFF, VFLAG_ON_MEMORY }, + { "fcram.mem" , 0x20000000, 0x08000000, 0xFF, VFLAG_ON_MEMORY }, + { "dtcm.mem" , 0xFFFF0000, 0x00004000, 0xFF, VFLAG_ON_MEMORY }, + { "bootrom_unp.mem" , 0xFFFF0000, 0x00008000, 0xFF, VFLAG_ON_MEMORY } }; u32 GetVirtualSource(const char* path) { diff --git a/source/nand/virtual.h b/source/nand/virtual.h index 8f5513c..9ef95f0 100644 --- a/source/nand/virtual.h +++ b/source/nand/virtual.h @@ -11,8 +11,8 @@ static const char* virtualFileList[] = { // must have a match in virtualFileTemplates[] "twln.bin", "twlp.bin", "agbsave.bin", "firm0.bin", "firm1.bin", "ctrnand_fat.bin", "ctrnand_full.bin", "nand.bin", "nand_minsize.bin", "nand_hdr.bin", "sector0x96.bin", - "itcm.dmp", "arm9internal.dmp", "vram.dmp", "dsp.dmp", "axiwram.dmp", "fcram.dmp", - "dtcm.dmp", "bootrom_unp.dmp" + "itcm.mem", "arm9internal.mem", "vram.mem", "dsp.mem", "axiwram.mem", "fcram.mem", + "dtcm.mem", "bootrom_unp.mem" }; static const u32 virtualFileList_size = sizeof(virtualFileList) / sizeof(char*);