initial commit
[ld45_start_nothing] / src / main.asm
1 ; vi:filetype=nasm ts=8 sts=8 sw=8:
2         bits 16
3         org 7e00h ; that's where our boot loader puts us (see src/boot/boot.asm)
4
5         mov ax, 13h
6         int 10h
7
8         mov ax, 0a000h
9         mov es, ax
10         xor di, di
11         mov ax, 0x404
12         mov cx, 32000
13         rep stosw
14
15         cli
16         hlt