pico_mouse_jiggler/memory.x
Louis Hollingworth c09126ccd7
Now jiggles the cursor
Next steps:
 * allow the jiggler to be temporarily disabled
 * illuminate an LED to say in operation

Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
2023-06-17 21:27:47 +01:00

16 lines
319 B
Plaintext

MEMORY {
BOOT2 : ORIGIN = 0x10000000, LENGTH = 0x100
FLASH : ORIGIN = 0x10000100, LENGTH = 2048K - 0x100
RAM : ORIGIN = 0x20000000, LENGTH = 256K
}
EXTERN(BOOT2_FIRMWARE)
SECTIONS {
/* ### Boot loader */
.boot2 ORIGIN(BOOT2) :
{
KEEP(*(.boot2));
} > BOOT2
} INSERT BEFORE .text;