mirror of
https://github.com/isometimes/rpi4-osdev
synced 2024-11-08 19:30:39 +00:00
Testing Markdown links
This commit is contained in:
parent
b97c6efc57
commit
19d7e35b96
1 changed files with 2 additions and 0 deletions
|
@ -104,3 +104,5 @@ __bss_size = (__bss_end - __bss_start)>>3;
|
|||
Writing linker scripts is [worth investigating](http://ftp.gnu.org/old-gnu/Manuals/ld-2.9.1/html_mono/ld.html#SEC6) but, for our purposes, all you need to know is that by referencing `.text.boot` first and using the `KEEP()`, we ensure the `.text` section starts with our assembly code. That means our first instruction starts at 0x80000, which is exactly where the RPi4 will look for it when it boots. Our code will be run.
|
||||
|
||||
_Now you're ready to compile and then boot your OS!_
|
||||
|
||||
[Go to part2-building >](../part2-building)
|
||||
|
|
Loading…
Reference in a new issue