
* Add jumper * Hex Hex * Fix hex decoding * Cleanup readme * Build with musl * add mips delay slot back * Added linker script * More jump * clippy * taplo
12 lines
240 B
Plaintext
12 lines
240 B
Plaintext
MEMORY
|
|
{
|
|
FLASH (rx) : ORIGIN = 0x20001000, LENGTH = 512K
|
|
RAM (xrw) : ORIGIN = 0x21000000, LENGTH = 64K
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : { *(.text*) } > FLASH
|
|
.rodata : { *(.rodata*) } > FLASH
|
|
.bss : { *(.bss*) } > RAM
|
|
} |