EttinOS/src/HELLO.INC

10 lines
95 B
Plaintext

;Prints a hello world.
hello:
mov si, .hello
call println
ret
.hello db "Hello world!", 0x0