nasm was assembling "jmp boot_program" into a 2 byte opcode.
nasm-2.09.03-win32
i stuck a byte under the jmp instruction for now.
Code: Select all
start: jmp boot_program
db 0x00
Code: Select all
start: jmp boot_program
db 0x00