]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - sim/testsuite/sim/fr30/hello.ms
Initial creation of sourceware repository
[thirdparty/binutils-gdb.git] / sim / testsuite / sim / fr30 / hello.ms
1 # mach: fr30
2 # output: Hello world!\n
3
4 .global _start
5 _start:
6
7 ; write (hello world)
8 ldi32 #14,r6
9 ldi32 #hello,r5
10 ldi32 #1,r4
11 ldi32 #5,r0
12 int #10
13 ; exit (0)
14 ldi32 #0,r4
15 ldi32 #1,r0
16 int #10
17
18 length: .long 14
19 hello: .ascii "Hello world!\r\n"