Home | History | Annotate | Line # | Download | only in cr16
      1 # mach: cr16
      2 
      3 	.include "testutils.inc"
      4 
      5 	start
      6 
      7 	.global read16
      8 read16:
      9 	loadw foo,r1
     10 	cmpw $42, r1
     11 	beq ok
     12 	fail
     13 ok:
     14 	pass
     15 
     16 foo:
     17 	.word 42
     18