1 Star 0 Fork 0

Mr.C/Luma3DS-Rosalina

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
linker.ld 432 Bytes
一键复制 编辑 原始数据 按行查看 历史
TuxSH 提交于 2017-04-17 12:32 . Fix linker scripts
OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
OUTPUT_ARCH(arm)
ENTRY(_start)
SECTIONS
{
. = 0x23F00000;
.text : ALIGN(4) { *(.text.start) *(.text*); . = ALIGN(4); }
.rodata : ALIGN(4) { *(.rodata*); . = ALIGN(4); }
.data : ALIGN(4) { *(.data*); . = ALIGN(4); }
.bss : ALIGN(8) { __bss_start = .; *(.bss* COMMON); . = ALIGN(8); __bss_end = .; }
. = ALIGN(4);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mrcluelue/Luma3DS-Rosalina.git
[email protected]:mrcluelue/Luma3DS-Rosalina.git
mrcluelue
Luma3DS-Rosalina
Luma3DS-Rosalina
3dsxloader

搜索帮助