Hello everyone!
I've written this boot loader, using NASM:
[BITS 16]
[ORG 0x7c00]
jmp $
times 510 - ($ - $$) db 0
dw 0xaa55
I know, the code is VERY simple, but I just want to know how I could run it on my computer? I've assembled it into boot.bin, and the file is 512 bytes in size, but my question is how can I run it on my computer?