1 Star 13 Fork 7

pedro/pos

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
hello.lds 578 Bytes
一键复制 编辑 原始数据 按行查看 历史
pedro 提交于 2021-05-12 18:33 +08:00 . hello world
/*彭东 @ 2021.01.09*/
ENTRY(_start)
OUTPUT_ARCH(i386)
OUTPUT_FORMAT(elf32-i386)
SECTIONS
{
. = 0x200000;
__begin_start_text = .;
.start.text : ALIGN(4) { *(.start.text) }
__end_start_text = .;
__begin_text = .;
.text : ALIGN(4) { *(.text) }
__end_text = .;
__begin_data = .;
.data : ALIGN(4) { *(.data) }
__end_data = .;
__begin_rodata = .;
.rodata : ALIGN(4) { *(.rodata) *(.rodata.*) }
__end_rodata = .;
__begin_kstrtab = .;
.kstrtab : ALIGN(4) { *(.kstrtab) }
__end_kstrtab = .;
__begin_bss = .;
.bss : ALIGN(4) { *(.bss) }
__end_bss = .;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gaopedro/pos.git
[email protected]:gaopedro/pos.git
gaopedro
pos
pos
master

搜索帮助