1# JCond/SCond instructions.
2 .data
3foodata: .word 42
4	 .text
5footext:
6
7	.global jeq
8jeq:
9jeq r1
10
11	.global jne
12jne:
13jne r2
14
15	.global jcs
16jcs:
17jcs r3
18
19	.global jcc
20jcc:
21jcc r4
22
23	.global jhi
24jhi:
25jhi r5
26
27	.global jls
28jls:
29jls r6
30
31	.global jgt
32jgt:
33jgt r7
34
35	.global jle
36jle:
37jle r8
38
39	.global jfs
40jfs:
41jfs r9
42
43	.global jfc
44jfc:
45jfc r10
46
47	.global jlo
48jlo:
49jlo r11
50
51	.global jhs
52jhs:
53jhs r12
54
55	.global jlt
56jlt:
57jlt r13
58
59	.global jge
60jge:
61jge ra
62
63	.global jump
64jump:
65jump sp
66
67	.global seq
68seq:
69seq r1
70
71	.global sne
72sne:
73sne r2
74
75	.global scs
76scs:
77scs r3
78
79	.global scc
80scc:
81scc r4
82
83	.global shi
84shi:
85shi r5
86
87	.global sls
88sls:
89sls r6
90
91	.global sgt
92sgt:
93sgt r7
94
95	.global sle
96sle:
97sle r8
98
99	.global sfs
100sfs:
101sfs r9
102
103	.global sfc
104sfc:
105sfc r10
106
107	.global slo
108slo:
109slo r11
110
111	.global shs
112shs:
113shs r12
114
115	.global slt
116slt:
117slt r13
118
119	.global sge
120sge:
121sge ra
122