Simple OS to learn C
Go to file
g1n 79ed6ccff2
Optimized Makefile a bit more
Now kernel binary is not recompiled on every run, 'make' checks if
files are changed.

Also deleted not needed sections of Makefile.
2022-02-10 21:49:58 +02:00
src Optimized Makefile a bit more 2022-02-10 21:49:58 +02:00
.gitignore Initial commit 2022-02-02 10:22:28 +02:00
LICENSE Initial commit 2022-02-02 10:22:28 +02:00
README.org Initial commit 2022-02-02 10:22:28 +02:00

README.org

Orion OS

Orion is simple OS on C (and a bit assembler).

Some code can be taken from OSDev wiki and James Molloy tutorial (I am trying to use it as less as possible) This is rewrite of old version of Orion that is not maintained now to better understand how it works.

Build

To build your need crosscompiler for i686 (check OSDev wiki for instructions)

  • First you need to cd src
  • Then make
  • And run it: if you want to run without grub - make run, if with grub - make run-grub