EttinOS/src/HELLO.INC

12 lines
104 B
Plaintext

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