From d4b489c94e58aa457908c4ac399f77a70f153328 Mon Sep 17 00:00:00 2001 From: fox8091 Date: Tue, 19 Apr 2016 13:29:59 -0500 Subject: [PATCH] Fix DTCM address --- source/nand/virtual.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/nand/virtual.c b/source/nand/virtual.c index 766d055..6dd357d 100644 --- a/source/nand/virtual.c +++ b/source/nand/virtual.c @@ -34,7 +34,7 @@ VirtualFile virtualFileTemplates[] = { { "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 }, + { "dtcm.mem" , 0xFFF00000, 0x00004000, 0xFF, VFLAG_ON_MEMORY }, { "bootrom_unp.mem" , 0xFFFF0000, 0x00008000, 0xFF, VFLAG_ON_MEMORY } };