mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-15 18:14:02 +00:00
16 lines
305 B
Plaintext
16 lines
305 B
Plaintext
|
/* SPDX-License-Identifier: MIT OR Apache-2.0
|
||
|
*
|
||
|
* Copyright (c) 2022 Andre Richter <andre.o.richter@gmail.com>
|
||
|
*/
|
||
|
|
||
|
SECTIONS
|
||
|
{
|
||
|
.rodata : {
|
||
|
ASSERT(. > 0xffffffff00000000, "Expected higher half address")
|
||
|
|
||
|
KEEP(*(.rodata.symbol_desc*))
|
||
|
. = ALIGN(8);
|
||
|
*(.rodata*)
|
||
|
}
|
||
|
}
|