; vi:filetype=nasm ts=8 sts=8 sw=8: bits 16 org 7e00h ; that's where our boot loader puts us (see src/boot/boot.asm) mov ax, 13h int 10h mov ax, 0a000h mov es, ax xor di, di mov ax, 0x404 mov cx, 32000 rep stosw cli hlt