Home | History | Annotate | Line # | Download | only in example-synacor
      1 # check the OR insn.
      2 # mach: example
      3 
      4 .include "testutils.inc"
      5 
      6 	start
      7 	JMP 3
      8 	HALT
      9 
     10 	OR r2, 0xf, 0x80
     11 	EQ r3, r2, 0x8f
     12 	JF r3, 2
     13 
     14 	OR r2, r2, 0xff
     15 	EQ r3, r2, 0xff
     16 	JF r3, 2
     17 
     18 	pass
     19