]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - sim/testsuite/sim/fr30/hello.ms
* config/sh/tm-sh.h (BELIEVE_PCC_PROMOTION): Define, so that
[thirdparty/binutils-gdb.git] / sim / testsuite / sim / fr30 / hello.ms
1 # output: Hello world!
2 # mach(): fr30
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"