About

Koiz-OS is a project I started in 2020 to create my own operating system from scratch. It initially served as a project to help me better understand how operating systems works in general and is a bit of a pet project I do just for fun. It's not meant to be used in production settings. Below is a brief summary of my milestones with links to the full articles.

Milestone 1 - Bootloader

Highlights:

  • Programmed a custom bootloader to load the operating system
  • See Full Post

Milestone 2 - Building a Standard Library

Highlights:

  • Programmed a standard C library that works with my operating system
  • See Full Post

Milestone 3 - Interrupts

Highlights:

  • Added in interrupts and interrupt handlers (ISR/IRQs)
  • Added in PIC interrupts for handling the keyboard.
  • See Full Post

Milestone 4 - Physical Memory Allocation

Highlights:

  • Added memory detection.
  • Added in a physical memory allocator that handles alloc/free while respecting reserved areas of memory
  • See Full Post

Milestone 5 - Virtual Memory Allocation

Highlights:

  • Added Paging (Page Directories/Tables), TLB, and MMU support
  • Added virtual memory translations
  • See Full Post