Imported Upstream version 2.9.0
[debian/cc1111] / sim / ucsim / z80.src / inst_ddcb.cc
1 /*
2  * Simulator of microcontrollers (inst_ddcb.cc)
3  *   DD 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
37 #define regs_IX_OR_IY regs.IX
38 #define inst_XXcb_rlc inst_ddcb_rlc
39 #define inst_XXcb_rrc inst_ddcb_rrc
40 #define inst_XXcb_rl inst_ddcb_rl
41 #define inst_XXcb_rr inst_ddcb_rr
42 #define inst_XXcb_sla inst_ddcb_sla
43 #define inst_XXcb_sra inst_ddcb_sra
44 #define inst_XXcb_slia inst_ddcb_slia
45 #define inst_XXcb_srl inst_ddcb_srl
46 #define inst_XXcb_bit inst_ddcb_bit
47 #define inst_XXcb_res inst_ddcb_res
48 #define inst_XXcb_set inst_ddcb_set
49 #define inst_XXcb inst_ddcb
50
51 #include "inst_xxcb.cc"
52
53 /* End of z80.src/inst_ddcb.cc */