repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Automatic date update in version.in
[binutils-gdb.git]
/
sim
/
testsuite
/
cr16
/
hello.ms
blob
ab6c4824779b0f1cf19ff3b1a253134d4cec9658
1
# output(): Hello world!\n
2
# mach(): cr16
3
4
.globl _start
5
_start:
6
7
# write (hello world)
8
movw $1,r2
9
movd $hello,(r4,r3)
10
loadw length,r5
11
movw $0x404,r0
12
excp 8
13
# exit (0)
14
movw $0,r2
15
movw $0x410,r0
16
excp 8
17
18
length: .long 14
19
hello: .ascii "Hello world!\r\n"