EttinOS/source/hello.inc
2021-06-02 13:33:39 +03:00

11 lines
96 B
PHP

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