About the Project
x16-PRos is a minimalistic 16-bit operating system written in NASM for x86 architecture. It supports a text interface, loading programs from disk, and basic system functions such as displaying CPU information, time, and date.

System Lightweight
x16-PRos is a lightweight system. On disk, it takes up only 12.5 kilobytes.
Extensibility
Ability to add your own 16-bit programs.
Educational
Great project for learning the principles of operating systems.
Understandability
All programs have convenient hints that will definitely help you understand everything.
x16 PRos includes a small set of built-in programs. You can add your own program to the system image and then run it using the load command, specifying the disk sector number where you wrote the program as an argument.
Here's how you can add a program:
dd if=YourProgram.bin of=disk_img/x16pros.img bs=512 seek=DiskSector conv=notrunc
When trying to load sectors 1 through 5 using load, you will encounter artifacts or system freezes.
Supported commands in x16 PRos terminal
Basic set of x16 PRos terminal commands:
- help display list of commands
- info brief system information
- cls clear screen
- shut shut down the system
- reboot restart the system
- date display date
- time show time (UTC)
- CPU CPU information
- load load program from disk sector (0000x800h)
- writer start writer program
- brainf start brainf interpreter
- barchart start barchart program
- snake start Snake game
- calc start calculator program
x16 PRos Software Package
Basic x16 PRos software package includes:
- Notepad for writing and saving texts to disk sectors
- Brainf IDE for working with Brainf language
- Barchart program for creating simple diagrams
- Snake classic Snake game
- Calc help with simple mathematical calculations
To run x16 PRos, use emulators such as QEMU or Bochs. Example command for QEMU:
qemu-system-x86_64 -fda x16-PRos-disk-image.img
You can also try running x16-PRos on a real PC (preferably with BIOS, not UEFI)
If you still want to run x16-PRos on a UEFI PC, you will need to enable "CSM support" in your BIOS. It may be called slightly differently.