bootgame1

view boot.asm @ 0:81facff3a8ae

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 07 Jun 2017 08:56:42 +0300
parents
children 48755f08211a
line source
1 start:
2 mov ax, 0x13
3 int 0x10
4 push word 0xa000
5 pop es
7 mainloop:
8 xor di, di
9 mov ax, 0x0202
10 mov cx, 32000
11 rep stosw
13 jmp mainloop
15 resb 510 - ($ - start)
16 db 0x55, 0xaa