http://git.dujemihanovic.i2p?p=nameless-os.git;a=blob;f=boot/x86/mbr.s;h=613b24894d993a26fac2891e3ecad4768028cb7d;hb=c4408dfedc5d7b3a4e6b584c37c58e064265ef2d
search: re summary | shortlog | log | commit | commitdiff | tree history | raw | HEAD Separate loading clusters and cluster chains [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...