blob: 489d103ce43c88e4fb33cecb6c2e2a893f1986e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.include "t-macros.i"
start
mov 4, r6
mov 1, r7 # FID
load r8 hello # string
load r9 ehello-hello # size
trap 31
exit0
.data
hello: .ascii "Hello World!\n"
ehello:
|