http://git.dujemihanovic.i2p?p=nameless-os.git;a=blob;f=boot/x86/mbr.s;hb=2a70d72730b91905543e5d5e850bc00cf43bc5e6
search: re summary | shortlog | log | commit | commitdiff | tree history | raw | HEAD Fixes and improvements to FAT32 driver [nameless-os.git] / boot / x86 / mbr.s 1 ; x86 bootloader for nameless-os, MBR portion 2 3 bits 16 4 cpu 686 5 org 0x600 6 7 _start: 8 cli ; we really don't want to be interrupted during relocation 9 ; set up segment registers 10 xor ax, ax 11 mov ds, ax 12 mov es, ax 13 mov ss, ax 14 mov sp, 0x7c00 ; just under the soon-to-be-loaded VBR, should be more than sufficient space 15 16 ;...