I have been reading BrokenThorn’s operating system development tutorial, I am creating and loading the second stage boot loader. This tutorial is for Windows, but I am doing this in Linux (Ubuntu 1
Tag: QEMU
Compilation – BIOS INT 10H Printing garbage on QEMU
I have a problem writing x86 real-mode assembler that runs as a bootloader in QEMU. I am trying to print text via BIOS interrupt 0x10. My code is: < /p>
print:
pusha
.loop:
mov AL, [SI]
cm