EttinOS/source/hello.inc

11 lines
96 B
PHP
Raw Normal View History

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