Builtins
ls
list all files and commandscl
clear the screenPrograms
ed <text-file>
open a text editorhelp
show this helpmore <text-file>
preview the content of a filemv <source> <destination>
change file's path from source to destinationrm <text-file>
delete a filesnake
launch a snake gameOSle is a real-mode OS that fits in a boot sector.
It's written in x86 assembly and, despite its tiny size (only 510 bytes), it packs essential features like:
OSle includes a tiny Software Development Kit that includes definitions and a toolchain to create your own OSle programs.
Follow the step-by-step tutorial to get started and, whenever you are ready to run your code, just compile it and bundle it like this:
# compile your source code into a binary $ sdk/build my_program.s # bundle it with OSle $ sdk/pack my_program.bin
For feedback and contrubtions guidelines, please refer to the GitHub Repository.