Simplest kernel possible created in C Language. The kernel is in 32-bit protected mode and is made to be booted in a x86 CPU (i use Qemu Emulator, as an alternative you can use Bochs).
This kernel only print a 'X' on the top left of the screen after being booted.
Requirements:
- x86 CrossCompiler Use this path:
export PREFIX="/usr/local/i386elfgcc"
export TARGET=i386-elf
export PATH="$PREFIX/bin:$PATH"
Once you have created the Cross Compiler and installed Qemu you can use the given Makefile
make run