From 900b9ec6283ef174e06d64bb5ad5520e74c1384b Mon Sep 17 00:00:00 2001 From: d0k3 Date: Mon, 2 Jan 2017 20:52:54 +0100 Subject: [PATCH] Virtual NAND: access to unused sectors 0x01...0x95 --- source/virtual/vnand.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/virtual/vnand.c b/source/virtual/vnand.c index 2931996..39b65a2 100644 --- a/source/virtual/vnand.c +++ b/source/virtual/vnand.c @@ -27,7 +27,8 @@ static const VirtualFile vNandFileTemplates[] = { { "nand_minsize.bin" , 0x00000000, 0x3AF00000, 0xFF, VFLAG_ON_O3DS | VFLAG_A9LH_AREA }, { "nand_minsize.bin" , 0x00000000, 0x4D800000, 0xFF, VFLAG_ON_N3DS | VFLAG_ON_NO3DS | VFLAG_A9LH_AREA }, { "nand_hdr.bin" , 0x00000000, 0x00000200, 0xFF, VFLAG_ON_NAND | VFLAG_A9LH_AREA }, - { "twlmbr.bin" , 0x000001BE, 0x00000042, 0x03, VFLAG_ON_NAND | VFLAG_A9LH_AREA } + { "twlmbr.bin" , 0x000001BE, 0x00000042, 0x03, VFLAG_ON_NAND | VFLAG_A9LH_AREA }, + { "unused.bin" , 0x00000200, 0x00012A00, 0xFF, VFLAG_ON_NAND } }; bool CheckVNandDrive(u32 nand_src) {