1# 'Branch if Equal to 0' instructions.
2 .data
3foodata: .word 42
4	 .text
5footext:
6
7	.global beq0b
8beq0b:
9beq0b r10 , *+22
10
11	.global bne0b
12bne0b:
13bne0b r11 , *+0x20
14
15	.global beq0w
16beq0w:
17beq0w r12 , *+2
18
19	.global bne0w
20bne0w:
21bne0w r13 , *+040
22
23	.global beq0d
24beq0d:
25beq0d ra , *+32
26
27	.global bne0d
28bne0d:
29bne0d sp , *+16
30
31
32
33