1 Star 0 Fork 0

rcore-os/RVM1.5

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
linker.lds 551 Bytes
一键复制 编辑 原始数据 按行查看 历史
ENTRY(arch_entry)
BASE_ADDRESS = 0xffffff0000000000;
SECTIONS
{
. = BASE_ADDRESS;
.header : {
__header_start = .;
KEEP(*(.header))
}
. = ALIGN(4K);
.text : { *(.text .text.*) }
. = ALIGN(4K);
.rodata : { *(.rodata .rodata.*) }
. = ALIGN(4K);
.data : { *(.data .data.*) *(.got .got.*) }
. = ALIGN(4K);
.bss : { *(.bss .bss.*) *(COMMON) }
. = ALIGN(4K);
__core_end = .;
__entry_offset = arch_entry - BASE_ADDRESS;
__core_size = __core_end - BASE_ADDRESS;
/DISCARD/ : { *(.comment) *(.gnu*) *(.note*) *(.eh_frame*) }
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/rcore-os/RVM1.5.git
git@gitee.com:rcore-os/RVM1.5.git
rcore-os
RVM1.5
RVM1.5
main

搜索帮助