EttinOS/source/hello.inc

11 lines
96 B
PHP

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