SimpleOS is a 32-bit operating system built from scratch using assembly and C. It utilizes shell scripts for disk writes and QEMU for system loading and debugging. This README provides an overview of its components and functionalities.
- Bootloader implementation with a two-stage loading process.
- Uses the IA-32 standard for managing interrupts and exceptions.
- Basic kernel data structures library developed for internal operations.
- Time-slice process scheduling similar to Linux 0.1.1.
- Critical resource protection with mutex and semaphore implementations.
- Virtual memory initiation with paging mechanism.
- Page table creation for individual processes.
- Simple priority levels with PL0 and PL3 for kernel and process isolation.
- Implementation of system calls for process communication.
- Integration of the newlib library for standard functionalities.
- Console input and output handling.
- Keyboard input processing.
- Development of a device management layer.
- Introduction of tty devices.
- Basic shell implementation supporting commands like echo, list, help, etc.
- File system development for tty device management.
- Implementation of the FAT16 file system with 'ls' command support.