Im writing a bootloader and I set up my stack up as such...
STACK_SEGMENT equ 0x0050
STACKP_OFFSET equ 0x03FF
mov ax, STACK_SEGMENT
mov ss, ax
mov sp, STACKP_OFFSET
Am I allocating 1024 bytes of stack space by doing this? and is it appropriate to load other stuff at 0x00900? 0x00900 should be right after my stack data...