Home | History | Annotate | Line # | Download | only in cr16
      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"
     20