Imported Upstream version 2.9.0
[debian/cc1111] / sim / ucsim / z80.src / inst_fdcb.cc
1 /*
2  * Simulator of microcontrollers (inst_fdcb.cc)
3  *   FD CB escaped multi-byte opcodes for Z80.
4  *
5  * Copyright (C) 1999,99 Drotos Daniel, Talker Bt.
6  * 
7  * To contact author send email to drdani@mazsola.iit.uni-miskolc.hu
8  *
9  */
10
11 /* This file is part of microcontroller simulator: ucsim.
12
13 UCSIM is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
17
18 UCSIM is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with UCSIM; see the file COPYING.  If not, write to the Free
25 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
26 02111-1307, USA. */
27 /*@1@*/
28
29 #include "ddconfig.h"
30
31 // local
32 #include "z80cl.h"
33 #include "regsz80.h"
34 #include "z80mac.h"
35
36 #define regs_IX_OR_IY regs.IY
37 #define inst_XXcb_rlc inst_fdcb_rlc
38 #define inst_XXcb_rrc inst_fdcb_rrc
39 #define inst_XXcb_rl inst_fdcb_rl
40 #define inst_XXcb_rr inst_fdcb_rr
41 #define inst_XXcb_sla inst_fdcb_sla
42 #define inst_XXcb_sra inst_fdcb_sra
43 #define inst_XXcb_slia inst_fdcb_slia
44 #define inst_XXcb_srl inst_fdcb_srl
45 #define inst_XXcb_bit inst_fdcb_bit
46 #define inst_XXcb_res inst_fdcb_res
47 #define inst_XXcb_set inst_fdcb_set
48 #define inst_XXcb inst_fdcb
49
50 #include "inst_xxcb.cc"
51
52 /* End of z80.src/inst_fdcb.cc */