synth/mbv/bootloader/bootloader.ld
Paul Mathieu 3db383d461 mbv: now with functioning timer interrupts!
And a few other nice things.
The bootloader now has an embedded wozmon!
If you know its offset, you can jump to it from the app.
2025-06-10 23:46:43 -07:00

35 lines
458 B
Plaintext

MEMORY
{
BLRAM (rwx) : ORIGIN = 0x00000000, LENGTH = 0x1000
}
SECTIONS
{
.text :
{
KEEP(*(.start))
*(.text*)
*(.rodata*)
} > BLRAM
.bss (NOLOAD) :
{
_bss_begin = .;
*(.bss*)
*(COMMON)
_bss_end = .;
} > BLRAM
.data :
{
*(.data*)
__exidx_start = .;
*(.exidx*)
__exidx_end = .;
} > BLRAM
_initial_stack_pointer = 0x1000;
}