os/README.md
2024-05-25 23:17:55 +03:00

962 B

Simple OS implementation

DeadOS is a minimalist operating system designed for x86 architecture, created solely for educational purposes. It is an ideal platform for learning and understanding the fundamental concepts of operating system development. While it is not intended to evolve into a fully-fledged OS, DeadOS provides a straightforward and manageable codebase that makes it perfect for experimentation and study.

Requirements

  • make
  • GCC Cross-Compiler
  • QEMU

How to run

  • make
  • qemu-system-x86_64 -monitor stdio -cdrom deados.iso

Features

  • Bootloader
  • Kernel
  • VGA Driver
  • Keyboard Driver
  • Shell
  • Basic commands
  • Timers
  • Interrupts
  • Kernel Extensions handling
  • Paging
  • [] Memory Management
  • [] File System
  • User Space
  • Syscalls
  • Multitasking
  • [] stdlib

Screenshot:

image