Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add links to the next chapters #140

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Chapter-1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ The OS will be built for the x86 architecture, running on 32 bits, and compatibl
* API Posix
* LibC
* "Can" run a shell or some executables (e.g., lua)

[Click here to read the next Chapter.](https://github.com/NoodleCommits/How-to-Make-a-Computer-Operating-System/tree/master/Chapter-2)
2 changes: 2 additions & 0 deletions Chapter-2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,5 @@ make run
The documentation for qemu is available at [QEMU Emulator Documentation](http://wiki.qemu.org/download/qemu-doc.html).

You can exit the emulator using: Ctrl-a.

[Click here to read the next chapter.](https://github.com/NoodleCommits/How-to-Make-a-Computer-Operating-System/tree/master/Chapter-3)
2 changes: 2 additions & 0 deletions Chapter-3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,3 +172,5 @@ losetup -d /dev/loop1

* [GNU GRUB on Wikipedia](http://en.wikipedia.org/wiki/GNU_GRUB)
* [Multiboot specification](https://www.gnu.org/software/grub/manual/multiboot/multiboot.html)

[Click here to read the next chapter.](https://github.com/NoodleCommits/How-to-Make-a-Computer-Operating-System/tree/master/Chapter-4)
1 change: 1 addition & 0 deletions Chapter-4/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,4 @@ FLAG= $(INCDIR) -g -O2 -w -trigraphs -fno-builtin -fno-exceptions -fno-stack-pr
ASM=nasm
ASMFLAG=-f elf -o
```
[Click here to read the next chapter.](https://github.com/NoodleCommits/How-to-Make-a-Computer-Operating-System/tree/master/Chapter-5)
1 change: 1 addition & 0 deletions Chapter-5/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,3 +193,4 @@ u32 Io::inl(u32 ad){
return _v;
}
```
[Click here to read the next chapter.](https://github.com/NoodleCommits/How-to-Make-a-Computer-Operating-System/tree/master/Chapter-6)
1 change: 1 addition & 0 deletions Chapter-6/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,4 @@ void init_gdt(void)
next: \n");
}
```
[Click here to read the next chapter.](https://github.com/NoodleCommits/How-to-Make-a-Computer-Operating-System/tree/master/Chapter-7)
2 changes: 2 additions & 0 deletions Chapter-7/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,3 +248,5 @@ _asm_int_%1:
```

These macros will be used to define the interrupt segment that will prevent corruption of the different registries, it will be very useful for multitasking.

[Click here to read the next chapter.](https://github.com/NoodleCommits/How-to-Make-a-Computer-Operating-System/tree/master/Chapter-8)
2 changes: 1 addition & 1 deletion Chapter-8/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ With the identity mapping model, the page will apply only to the kernel as the f

This model is simple: the first virtual memory page coincide to the first page in physical memory, the second page coincide to the second page on physical memory and so on ...


[Click here to read the final chapter.](https://github.com/NoodleCommits/How-to-Make-a-Computer-Operating-System/tree/master/chapter9)



Expand Down