Writing an OS?
inspired by Julia Evan's blog post, using the instructions from MikeOS.
it clears the screen and then prints some text. exciting!

How to run it
- install
nasm and qemu
- run
make run
- have a look at first.asm and change something
jmp 2
Resources
Ideas
- print more messages (numbers? e.g. sleep, print, ...)
- print typed keys to the screen
- port to C
- port to a real language (scheme?!)
- try something graphical
- read Julia's OS in Rust