4500: Replace <pre>-graph with nicer image.
[libguestfs-talks.git] / 2019-lightning-talk / hello.asm
1         mov ah,0        ;  clear screen
2         mov al,3
3         int 0x10
4         mov ah,0x13 ; print string
5         mov bl,0xa
6         mov al,1
7         mov cx,len
8         mov dh,0
9         mov dl,0
10         mov bp,hello
11         int 0x10
12         hlt
13 hello:  db "*** Hello KVM Forum ***",0xd,0xa
14 len:    equ $-hello