Introduction We're starting out the new year with a tutorial as I haven't wrote anything in my blog for a while. I wrote this at first for my reference for setting up my servers since the existing tutorials I found
Drakeor
A collection of 42 posts
KoizOS - Virtual Memory Allocation
Post describing the writing a virtual memory allocator for my operating system project
KoizOS - Physical Memory Allocation
Journey of implementing a physical memory allocator in Koiz OS.
KoizOS - Handling Interrupts
My journey of developing interrupts for Koiz OS.
KoizOS - Building a Standard Lib
Introduction After making it past the bootloader, the actual operating system starts and displays an X in the upper left-hand corner of the screen using the following code: void main () { char * video_memory = ( char *) 0xb8000 ; *video_memory = 'X'; } That's not
KoizOS - Bootloader
Writing a Bootloader from Scratch in FASM Although OSDev and many other sites recommend first starting with GRUB, I wanted to write my own as a learning experience and see how far I can get with it before I needed
KoizOS - Introduction
Introduction post to the KoizOS Operating System. Details the tools used.
Writing a Simple Software Based Raytracer in C
Introduction This is a project I wrote last month for a parallel programming class as a way to test the performance of the ray tracing algorithm on both OpenMP and MPI. It's written primarily in C and requires no external