source
Entry
The entry point of the program is somewhere a function or a symbol called entry or _entry, in this project, it's in kernel/kernel.ld.
why _entry is at 0x80000000 is that qemu expects the kernel to be loaded at this address.
Then we can go to the entry.S file, this is where it actually starts running
image
.section .text 是在指示組譯器:
1.將後續的程式碼放入 .text 區域。