Lines Matching defs:opcode

15 void dsj(cpu_state *cpu, word opcode)  in dsj()
26 void dsjeq(cpu_state *cpu, word opcode) in dsjeq()
42 void dsjne(cpu_state *cpu, word opcode) in dsjne()
58 void dsjs(cpu_state *cpu, word opcode) in dsjs()
68 void call_rs(cpu_state *cpu, word opcode) in call_rs()
76 void calla(cpu_state *cpu, word opcode) in calla()
84 void callr(cpu_state *cpu, word opcode) in callr()
92 void rets(cpu_state *cpu, word opcode) in rets()
101 void jump_rs(cpu_state *cpu, word opcode) in jump_rs()
138 void jr_uc(cpu_state *cpu, word opcode) { JR(true); } in jr_uc()
139 void jr_uc_0(cpu_state *cpu, word opcode) { JR_0(true); } in jr_uc_0()
140 void jr_uc_8(cpu_state *cpu, word opcode) { JR_8(true); } in jr_uc_8()
142 void jr_ne(cpu_state *cpu, word opcode) { JR(!ZF); } in jr_ne()
143 void jr_ne_0(cpu_state *cpu, word opcode) { JR_0(!ZF); } in jr_ne_0()
144 void jr_ne_8(cpu_state *cpu, word opcode) { JR_8(!ZF); } in jr_ne_8()
146 void jr_eq(cpu_state *cpu, word opcode) { JR(ZF); } in jr_eq()
147 void jr_eq_0(cpu_state *cpu, word opcode) { JR_0(ZF); } in jr_eq_0()
148 void jr_eq_8(cpu_state *cpu, word opcode) { JR_8(ZF); } in jr_eq_8()
150 void jr_nc(cpu_state *cpu, word opcode) { JR(!CF); } in jr_nc()
151 void jr_nc_0(cpu_state *cpu, word opcode) { JR_0(!CF); } in jr_nc_0()
152 void jr_nc_8(cpu_state *cpu, word opcode) { JR_8(!CF); } in jr_nc_8()
154 void jr_c(cpu_state *cpu, word opcode) { JR(CF); } in jr_c()
155 void jr_c_0(cpu_state *cpu, word opcode) { JR_0(CF); } in jr_c_0()
156 void jr_c_8(cpu_state *cpu, word opcode) { JR_8(CF); } in jr_c_8()
158 void jr_v(cpu_state *cpu, word opcode) { JR(VF); } in jr_v()
159 void jr_v_0(cpu_state *cpu, word opcode) { JR_0(VF); } in jr_v_0()
160 void jr_v_8(cpu_state *cpu, word opcode) { JR_8(VF); } in jr_v_8()
162 void jr_nv(cpu_state *cpu, word opcode) { JR(!VF); } in jr_nv()
163 void jr_nv_0(cpu_state *cpu, word opcode) { JR_0(!VF); } in jr_nv_0()
164 void jr_nv_8(cpu_state *cpu, word opcode) { JR_8(!VF); } in jr_nv_8()
166 void jr_n(cpu_state *cpu, word opcode) { JR(NF); } in jr_n()
167 void jr_n_0(cpu_state *cpu, word opcode) { JR_0(NF); } in jr_n_0()
168 void jr_n_8(cpu_state *cpu, word opcode) { JR_8(NF); } in jr_n_8()
170 void jr_nn(cpu_state *cpu, word opcode) { JR(!NF); } in jr_nn()
171 void jr_nn_0(cpu_state *cpu, word opcode) { JR_0(!NF); } in jr_nn_0()
172 void jr_nn_8(cpu_state *cpu, word opcode) { JR_8(!NF); } in jr_nn_8()
174 void jr_hi(cpu_state *cpu, word opcode) { JR(!CF&&!ZF); } in jr_hi()
175 void jr_hi_0(cpu_state *cpu, word opcode) { JR_0(!CF&&!ZF); } in jr_hi_0()
176 void jr_hi_8(cpu_state *cpu, word opcode) { JR_8(!CF&&!ZF); } in jr_hi_8()
178 void jr_ls(cpu_state *cpu, word opcode) { JR(CF||ZF); } in jr_ls()
179 void jr_ls_0(cpu_state *cpu, word opcode) { JR_0(CF||ZF); } in jr_ls_0()
180 void jr_ls_8(cpu_state *cpu, word opcode) { JR_8(CF||ZF); } in jr_ls_8()
184 void jr_gt(cpu_state *cpu, word opcode) { JR(GT_COND); } in jr_gt()
185 void jr_gt_0(cpu_state *cpu, word opcode) { JR_0(GT_COND); } in jr_gt_0()
186 void jr_gt_8(cpu_state *cpu, word opcode) { JR_8(GT_COND); } in jr_gt_8()
189 void jr_ge(cpu_state *cpu, word opcode) { JR(GE_COND); } in jr_ge()
190 void jr_ge_0(cpu_state *cpu, word opcode) { JR_0(GE_COND); } in jr_ge_0()
191 void jr_ge_8(cpu_state *cpu, word opcode) { JR_8(GE_COND); } in jr_ge_8()
194 void jr_lt(cpu_state *cpu, word opcode) { JR(LT_COND); } in jr_lt()
195 void jr_lt_0(cpu_state *cpu, word opcode) { JR_0(LT_COND); } in jr_lt_0()
196 void jr_lt_8(cpu_state *cpu, word opcode) { JR_8(LT_COND); } in jr_lt_8()
200 void jr_le(cpu_state *cpu, word opcode) { JR(LE_COND); } in jr_le()
201 void jr_le_0(cpu_state *cpu, word opcode) { JR_0(LE_COND); } in jr_le_0()
202 void jr_le_8(cpu_state *cpu, word opcode) { JR_8(LE_COND); } in jr_le_8()
205 void jr_p(cpu_state *cpu, word opcode) { JR(P_COND); } in jr_p()
206 void jr_p_0(cpu_state *cpu, word opcode) { JR_0(P_COND); } in jr_p_0()
207 void jr_p_8(cpu_state *cpu, word opcode) { JR_8(P_COND); } in jr_p_8()