http://git.dujemihanovic.i2p?p=nameless-os.git;a=blob;f=boot/x86/vbr-fat32.s;h=7af11562331bec8bd2727fd14418addd251f8da2;hb=da4e7bf5dd2b9448b638255a20ee503b0641e495
search: re summary | shortlog | log | commit | commitdiff | tree history | raw | HEAD Load ELF kernel instead of flat binary [nameless-os.git] / boot / x86 / vbr-fat32.s 1 ; x86 bootloader for nameless-os, FAT32 VBR portion 2 ; This is what's going to be on most USB sticks and HDDs, for now 3 4 bits 16 5 org 0xfe00 6 cpu 686 7 8 STAGE3_ADDRESS equ 0x1800 9 STAGE3_SEGMENT equ STAGE3_ADDRESS >> 4 10 STAGE3_OFFSET equ STAGE3_ADDRESS & 0xf 11 12 %include "fat32/fat32-structs.s" 13 14 %macro print 1 15 mov si,...