Ai
1 Star 1 Fork 0

Turmoil/2023-Spring-OS

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
kernel.lds 544 Bytes
一键复制 编辑 原始数据 按行查看 历史
柳政尧 提交于 2023-04-05 17:37 +08:00 . feat: complete schedule
/*
* Set the architecture to mips.
*/
OUTPUT_ARCH(mips)
/*
* Set the ENTRY point of the program to _start.
*/
ENTRY(_start)
SECTIONS {
/* Exercise 3.10: Your code here. */
. = 0x80000000;
.tlb_miss_entry : { *(.text.tlb_miss_entry) }
. = 0x80000080;
.exc_gen_entry : { *(.text.exc_gen_entry) }
/* fill in the correct address of the key sections: text, data, bss. */
/* Exercise 1.2: Your code here. */
. = 0x80010000;
.text : { *(.text) }
.data : { *(.data) }
.bss : { *(.bss) }
bss_end = .;
. = 0x80400000;
end = . ;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tonys-studio/2023-spring-os.git
git@gitee.com:tonys-studio/2023-spring-os.git
tonys-studio
2023-spring-os
2023-Spring-OS
lab6-challenge

搜索帮助