diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2011-09-12 14:56:19 -0400 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2011-09-12 14:56:19 -0400 |
commit | 9515600e3f2ea133b02ea5dfcc573dd0aae20aa5 (patch) | |
tree | 78e1bcc61ef7d26bad772a574177964d3aec409d | |
parent | 4309cc4c0bdf4ece1b9ac57932d9f9d57f65640b (diff) | |
download | librambutan-9515600e3f2ea133b02ea5dfcc573dd0aae20aa5.tar.gz librambutan-9515600e3f2ea133b02ea5dfcc573dd0aae20aa5.zip |
test-fsmc.cpp: Fix incorrect sram_end.
-rw-r--r-- | examples/test-fsmc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |