Sign in
pigweed
/
third_party
/
github
/
raspberrypi
/
pico-sdk
/
8188adf98b25dca90112d4dbe7a15b356d800a2b
/
.
/
src
/
rp2_common
/
boot_stage2
/
boot_stage2.ld
blob: f8669ab64c0b3164e0831008b6d6376503b86b5a [
file
] [
log
] [
blame
]
MEMORY
{
/* We are loaded to the top 256 bytes of SRAM, which is above the bootrom
stack. Note 4 bytes occupied by checksum. */
SRAM
(
rx
)
:
ORIGIN
=
0x20041f00
,
LENGTH
=
252
}
SECTIONS
{
.
=
ORIGIN
(
SRAM
);
.
text
:
{
*(.
entry
)
*(.
text
)
}
>
SRAM
}