Sign in
pigweed
/
third_party
/
github
/
raspberrypi
/
pico-sdk
/
efe2103f9b28458a1615ff096054479743ade236
/
.
/
src
/
rp2350
/
boot_stage2
/
boot_stage2.ld
blob: 0162414a858d7aa65e99a1776fd9d2f6e81fe94c [
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
=
0x20081f00
,
LENGTH
=
252
}
SECTIONS
{
.
=
ORIGIN
(
SRAM
);
.
text
:
{
*(.
entry
)
*(.
text
)
}
>
SRAM
}