14 lines
189 B
Plaintext
14 lines
189 B
Plaintext
MEMORY {
|
|
ROM (rwx): ORIGIN = 0x020c0000, LENGTH = 0x1000
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x020c0000;
|
|
.text . : {
|
|
*(.text*)
|
|
*(.data*)
|
|
*(.rodata*)
|
|
} >ROM
|
|
|
|
} |