summaryrefslogtreecommitdiff
path: root/sim/testsuite/fr30-elf/hello.s
blob: d5259cdb7a559d5bc0f0c65cb6b510ab9147edd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
	.global _start
_start:

; write (hello world)
	ldi32 #14,r6
	ldi32 #hello,r5
	ldi32 #1,r4
	ldi32 #5,r0
	int   #10
; exit (0)
	ldi32 #0,r4
	ldi32 #1,r0
	int   #10

hello:	.ascii "Hello World!\r\n"