A repository for uploading my practice files regarding OS Dev Tutorials.
This is a work in progress.
Why not? Motivation for writing code again, etc.
This repo will mostly be a BIOS bootloader for a while until I figure stuff out. And the way to run it would be to assemble the file into binary with:
nasm -f bin .\boot.asm -o .\boot.bin
And then run it with an emulator like QEMU with the following command:
qemu-system-x86_64 .\boot.bin
The following are invaluable resources in the matter:
https://wiki.osdev.org/
http://github.com/cfenollosa/os-tutorial/
https://www.youtube.com/@OALABS
https://www.youtube.com/@OpenSecurityTraining