Posted is my bootloader code. Everything works until I try to jump to my loaded sector at ES:BX.
Please tell me what I am doing wrong. Probably a very rookie mistake.
Thanks!
Here is my code (not optimized, messy, sorry):
bits 16]
[org 0x7c00]
cli
mov ax, 0x8000 ; Set stack address
mov ss, ax...