f3fac5e3b8
Former-commit-id: 16ba6dada28f8beb5971413acbbe153a26aa9ec3 Former-commit-id: f0661ad20245110797fd99fe16d3fb11382bb78a
32 lines
398 B
Plaintext
32 lines
398 B
Plaintext
ENTRY(_reset)
|
|
|
|
MEMORY {
|
|
RAM : ORIGIN = 0x00000000, LENGTH = 16K
|
|
}
|
|
|
|
SECTIONS {
|
|
. = ORIGIN(RAM);
|
|
|
|
.init : {
|
|
*(.init.vector);
|
|
*(.init*);
|
|
} > RAM
|
|
|
|
.text : ALIGN(4) {
|
|
*(.text)
|
|
*(.text.*)
|
|
} > RAM
|
|
.data : ALIGN(4) {
|
|
*(.rodata*);
|
|
*(.data*);
|
|
} > RAM
|
|
.bss : ALIGN(4) {
|
|
*(.bss*)
|
|
} > RAM
|
|
|
|
.stack : AT (0x00003000) {
|
|
_stack_bottom = .;
|
|
. += 0xfe0;
|
|
_stack_top = .;
|
|
} > RAM
|
|
} |