So on my quest to jump into Assembly, I've "hlt"'d on one thing in this real mode binary..
This is preparing a stack from 9FB00->90000. The guide I was following assumed I had knowledge of segments and I was hoping I could get an explanation as to how 9000->90000.
[BITS 16]
[ORG 0x7C00]
jmp 0x0:Start
Start:
cli
;<<<ZONE IN QUESTION>>>
mov AX,0x9000
mov SS,AX
;<<<ZONE IN QUESTION>>>
mov SP,0xFB00
sti
cli
hlt
times 510 - ($ - $$) db 0 ;nasmgasm
dw 0xAA55