Moved base address to 0x20000.

This commit is contained in:
Joel Sherrill
2000-08-02 16:27:02 +00:00
parent 240936fda5
commit 354d47f0ff

View File

@@ -22,14 +22,14 @@
/* /*
* Declare some sizes. * Declare some sizes.
*/ */
_RamBase = DEFINED(_RamBase) ? _RamBase : 0x100000; _RamBase = DEFINED(_RamBase) ? _RamBase : 0x20000;
_RamSize = DEFINED(_RamSize) ? _RamSize : 1M; _RamSize = DEFINED(_RamSize) ? _RamSize : 1M;
_HeapSize = DEFINED(_HeapSize) ? _HeapSize : 0x10000; _HeapSize = DEFINED(_HeapSize) ? _HeapSize : 0x10000;
_StackSize = DEFINED(_StackSize) ? _StackSize : 0x1000; _StackSize = DEFINED(_StackSize) ? _StackSize : 0x1000;
MEMORY MEMORY
{ {
ram : org = 0x100000, l = 1M ram : org = 0x000000, l = 1M
} }
SECTIONS SECTIONS
@@ -41,7 +41,7 @@ SECTIONS
/* /*
* Text, data and bss segments * Text, data and bss segments
*/ */
.text : { .text 0x20000 : {
*(.text) *(.text)
/* /*