Skip to content

Commit 134e411

Browse files
committed
doc: Update README
1 parent c3f8250 commit 134e411

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,32 @@
11
# cocotiOS
22
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+
![](https://i.imgur.com/B3Ra9U8.png)
32+

0 commit comments

Comments
 (0)