From 9515600e3f2ea133b02ea5dfcc573dd0aae20aa5 Mon Sep 17 00:00:00 2001 From: Marti Bolivar Date: Mon, 12 Sep 2011 14:56:19 -0400 Subject: test-fsmc.cpp: Fix incorrect sram_end. --- examples/test-fsmc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/test-fsmc.cpp b/examples/test-fsmc.cpp index 921ecff..9102be6 100644 --- a/examples/test-fsmc.cpp +++ b/examples/test-fsmc.cpp @@ -10,7 +10,7 @@ // Start of FSMC SRAM bank 1 static uint16 *const sram_start = (uint16*)0x60000000; // End of Maple Native SRAM chip address space (512K 16-bit words) -static uint16 *const sram_end = (uint16*)0x60080000; +static uint16 *const sram_end = (uint16*)0x60100000; void test_single_write(void); void test_all_addresses(void); -- cgit v1.2.3