This commit is contained in:
athenahax 2024-12-29 20:35:43 -08:00 committed by GitHub
commit b97d129b28
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
**Goal: Learn how the computer memory is organized** **Goal: Learn how the computer memory is organized**
Please open page 14 [of this document]( Please open page 14 [of this document](
http://www.cs.bham.ac.uk/~exr/lectures/opsys/10_11/lectures/os-dev.pdf)<sup>1</sup> https://web.archive.org/web/20131205064209/http://www.cs.bham.ac.uk/~exr/lectures/opsys/10_11/lectures/os-dev.pdf)<sup>1</sup>
and look at the figure with the memory layout. and look at the figure with the memory layout.
The only goal of this lesson is to learn where the boot sector is stored The only goal of this lesson is to learn where the boot sector is stored

View File

@ -14,7 +14,7 @@ but:
- I'm fed up with people who think that reading an already existing kernel, even if small, is - I'm fed up with people who think that reading an already existing kernel, even if small, is
a good idea to learn operating systems. a good idea to learn operating systems.
Inspired by [this document](http://www.cs.bham.ac.uk/~exr/lectures/opsys/10_11/lectures/os-dev.pdf) Inspired by [this document](https://web.archive.org/web/20131205064209/http://www.cs.bham.ac.uk/~exr/lectures/opsys/10_11/lectures/os-dev.pdf)
and the [OSDev wiki](http://wiki.osdev.org/), I'll try to make short step-by-step READMEs and and the [OSDev wiki](http://wiki.osdev.org/), I'll try to make short step-by-step READMEs and
code samples for anybody to follow. Honestly, this tutorial is basically the first document but code samples for anybody to follow. Honestly, this tutorial is basically the first document but
split into smaller pieces and without the theory. split into smaller pieces and without the theory.