vicqtor / cl_os

a ommand line only operating system for development and learning purposes.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

a simple command line operating system. for learning purposes


how to build

boot

nasm -f elf boot.asm -o boot.o
g++ -c kernel.cpp -o kernel.o -ffreestandinng -fno-exceptions -fno-rtti
gcc loader.o kernel.o -T linker.ld -o kern -nostdlib -nodefaultlibs -lgcc

main dir

grub-mkrescue iso --output=kern.iso

About

a ommand line only operating system for development and learning purposes.


Languages

Language:C++ 74.6%Language:Assembly 25.4%