summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/m32r/hello.ms
blob: 7ae227780018cddb7726932c61bda32d16071ac7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# output(): Hello world!\n
# mach(): m32r m32rx

	.globl _start
_start:

; write (hello world)
	ldi8 r3,#14
	ld24 r2,#hello
	ldi8 r1,#1
	ldi8 r0,#5
	trap #0
; exit (0)
	ldi8 r1,#0
	ldi8 r0,#1
	trap #0

length:	.long 14
hello:	.ascii "Hello world!\r\n"