New Guy: Building a boot loader :)
Posted: Mon Jun 15, 2009 8:55 pm
Hi everyone I have the following code for a boot loader
and I compile it wil
So i can compile it into a flat binary file. Now I was wondering what I do next? because I want to make an .ISO image out of my operating system (boot loader atm) and then run it with my virtual machine.
All help greatly appreciated!
Kind Regards
Keaton
Code: Select all
; boot.asm
hang:
jmp hang
times 510-($-$$) db 0 ; 2 bytes less now
db 0x55
db 0xAA
Code: Select all
nasm boot.asm -f bin -o boot.bin
All help greatly appreciated!
Kind Regards
Keaton