Brak opisu

Lucas Stadler 1c82e26354 add a screenshot. 11 lat temu
..
.gitignore ac6fe3cb44 ignore all binary things. 11 lat temu
Makefile db015a7f66 fetch the base floppy as well. 11 lat temu
README.md 1c82e26354 add a screenshot. 11 lat temu
first.asm 0db6288186 print a message periodically. 11 lat temu
screenshot.png 1c82e26354 add a screenshot. 11 lat temu

README.md

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!

screenshot of it running

How to run it

  1. install nasm and qemu
  2. run make run
  3. have a look at first.asm and change something
  4. 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