Home | History | Annotate | Line # | Download | only in cr16
      1 # mach: cr16
      2 
      3 	.include "testutils.inc"
      4 
      5 	start
      6 
      7 	.global read32
      8 read32:
      9 	loadd foo, (r1,r0)
     10 	cmpd $0x12345678, (r1,r0)
     11 	beq ok
     12 	fail
     13 ok:
     14 	pass
     15 
     16 foo:
     17 	.long 0x12345678
     18