;Prints a hello world. hello: mov si, .hello mov ah, 0x2 int 0x21 ret .hello db "Hello world!", 0x0