We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3f8250 commit 134e411Copy full SHA for 134e411
README.md
@@ -1,2 +1,32 @@
1
# cocotiOS
2
A simple OS implementation for x86_64
3
+
4
5
+# Prerequisites
6
+* QEMU simulator or bochs
7
+* I only know QEMU...
8
+* nasm compiler
9
+* dd tool
10
11
12
+# How to compile
13
+```
14
+$ cd boot
15
16
17
+$ nasm -o mbr.bin mbr.S
18
19
20
+$ dd if=./mbr.bin of=../img/cocotiOS.img bs=512 count=1 conv=notrunc
21
22
23
+$ cd ../img/
24
25
26
+$ qemu-system-x86_64 cocotiOS.img
27
28
29
+# Current results
30
31
+
32
0 commit comments