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

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

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