summaryrefslogtreecommitdiff
path: root/main.s
blob: aa1f293092b718f7812ff4a9fc7f030b9fcfcb3a (plain)
1
2
3
4
5
6
7
8
9
10
.include "sys.s"

.globl _start
_start:
	sys write, $STDOUT, $msg, $len
	sys exit, $0

.data
msg:	.ascii "Hello, World!\n"
len = .-msg