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 | 8b522ee8ed37e1a2b8dccf2cf1100d2cbdc520d1 (patch) | |
| tree | 78e1bcc61ef7d26bad772a574177964d3aec409d /examples | |
| parent | 626e4e06f0c8d2e7173f9413367013ed24182079 (diff) | |
test-fsmc.cpp: Fix incorrect sram_end.
Diffstat (limited to 'examples')
| -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); |
