-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
206 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
// 监控程序的入口点,.text.init 段放在内存的 0x80000000 位置,是最先执行的代码。 | ||
.p2align 2 | ||
.section .text.init | ||
INITLOCATE: // 定位启动程序 | ||
// 监控程序的入口点,是最先执行的代码 | ||
// .text.init 段放在内存的 0x80000000 位置 | ||
INITLOCATE: | ||
// 跳转到 init.S:START | ||
la s10, START | ||
jr s10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.