falcon OS is a basic operating system from scratch aiming to follow Monolithic Kernel Architecture. It's a kind of hobby Operating System created out of interest in order to explore the fields of Kernel Development, System Programming, Thread safe Data Structures and Algorithms Design, Large Scale Software Design.
- Segmentation based Memory architecture
- PIC
- Basic Device Drivers for Mouse and Keyboard
- Basic Event System for Mouse and Keyboard
- Interrupt and Exception Management
- Device Management
- Dynamic Memory Allocation
- PCI
- Basic System Calls
- Basic GUI support of 320 x 200 with 8-bit color depth channel
- Multitasking
- Intel x86 Assembly
- C++ Toolchain
- GNU Make
- NASM and GAS Assembler
- Xorriso and Grub for ISO image building
- LLVM tools clang-format, clang-tidy
- QEMU or Oracle Virtual Box or Bosch
- Development Environment: Linux (Preffered)
Install GCC compiler
sudo pacman -Sy gcc
Install xorriso for ISO building
sudo pacman -Sy xorriso
Install mtools
sudo pacman -Sy mtools
Install NASM Assembler
sudo pacman -Sy nasm
Install Grub
sudo pacman -Sy grub
use Makefile
to build kernel.iso
target
make kernel.iso
once you have ISO file, run it in VBox or QEMU.
install the same packages using apt
package manager.
In Progress...