summaryrefslogtreecommitdiff
path: root/apps/plugins/zxbox/z80_op4.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/zxbox/z80_op4.h')
-rw-r--r--apps/plugins/zxbox/z80_op4.h105
1 files changed, 105 insertions, 0 deletions
diff --git a/apps/plugins/zxbox/z80_op4.h b/apps/plugins/zxbox/z80_op4.h
new file mode 100644
index 0000000000..4e2cf8b073
--- /dev/null
+++ b/apps/plugins/zxbox/z80_op4.h
@@ -0,0 +1,105 @@
1/*
2 * Copyright (C) 1996-1998 Szeredi Miklos
3 * Email: mszeredi@inf.bme.hu
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version. See the file COPYING.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 *
19 */
20
21extern z80t z80op_ret_nz(z80t);
22extern z80t z80op_pop_bc(z80t);
23extern z80t z80op_jp_nz_nn(z80t);
24extern z80t z80op_jp_nn(z80t);
25extern z80t z80op_call_nz_nn(z80t);
26extern z80t z80op_push_bc(z80t);
27extern z80t z80op_add_a_n(z80t);
28extern z80t z80op_rst_00(z80t);
29extern z80t z80op_ret_z(z80t);
30extern z80t z80op_ret(z80t);
31extern z80t z80op_jp_z_nn(z80t);
32extern z80t z80op_special_cb(z80t);
33extern z80t z80op_call_z_nn(z80t);
34extern z80t z80op_call_nn(z80t);
35extern z80t z80op_adc_a_n(z80t);
36extern z80t z80op_rst_08(z80t);
37
38extern z80t z80op_ret_nc(z80t);
39extern z80t z80op_pop_de(z80t);
40extern z80t z80op_jp_nc_nn(z80t);
41extern z80t z80op_out_in_a(z80t);
42extern z80t z80op_call_nc_nn(z80t);
43extern z80t z80op_push_de(z80t);
44extern z80t z80op_sub_n(z80t);
45extern z80t z80op_rst_10(z80t);
46extern z80t z80op_ret_c(z80t);
47extern z80t z80op_exx(z80t);
48extern z80t z80op_jp_c_nn(z80t);
49extern z80t z80op_in_a_in(z80t);
50extern z80t z80op_call_c_nn(z80t);
51extern z80t z80op_special_dd(z80t);
52extern z80t z80op_sbc_a_n(z80t);
53extern z80t z80op_rst_18(z80t);
54
55extern z80t z80op_ret_po(z80t);
56extern z80t z80op_pop_hl(z80t);
57extern z80t z80op_jp_po_nn(z80t);
58extern z80t z80op_ex_isp_hl(z80t);
59extern z80t z80op_call_po_nn(z80t);
60extern z80t z80op_push_hl(z80t);
61extern z80t z80op_and_n(z80t);
62extern z80t z80op_rst_20(z80t);
63extern z80t z80op_ret_pe(z80t);
64extern z80t z80op_jp_hl(z80t);
65extern z80t z80op_jp_pe_nn(z80t);
66extern z80t z80op_ex_de_hl(z80t);
67extern z80t z80op_call_pe_nn(z80t);
68extern z80t z80op_special_ed(z80t);
69extern z80t z80op_xor_n(z80t);
70extern z80t z80op_rst_28(z80t);
71
72extern z80t z80op_ret_p(z80t);
73extern z80t z80op_pop_af(z80t);
74extern z80t z80op_jp_p_nn(z80t);
75extern z80t z80op_di(z80t);
76extern z80t z80op_call_p_nn(z80t);
77extern z80t z80op_push_af(z80t);
78extern z80t z80op_or_n(z80t);
79extern z80t z80op_rst_30(z80t);
80extern z80t z80op_ret_m(z80t);
81extern z80t z80op_ld_sp_hl(z80t);
82extern z80t z80op_jp_m_nn(z80t);
83extern z80t z80op_ei(z80t);
84extern z80t z80op_call_m_nn(z80t);
85extern z80t z80op_special_fd(z80t);
86extern z80t z80op_cp_n(z80t);
87extern z80t z80op_rst_38(z80t);
88
89/* IX */
90
91extern z80t z80op_pop_ix(z80t);
92extern z80t z80op_push_ix(z80t);
93
94extern z80t z80op_jp_ix(z80t);
95extern z80t z80op_ld_sp_ix(z80t);
96extern z80t z80op_ex_isp_ix(z80t);
97
98/* IY */
99
100extern z80t z80op_pop_iy(z80t);
101extern z80t z80op_push_iy(z80t);
102
103extern z80t z80op_jp_iy(z80t);
104extern z80t z80op_ld_sp_iy(z80t);
105extern z80t z80op_ex_isp_iy(z80t);