.include "sys.s" .globl _start _start: sys write, $STDOUT, $msg, $len sys exit, $0 .data msg: .ascii "Hello, World!\n" len = .-msg