summaryrefslogtreecommitdiffstats
path: root/apps/plugins/zxbox/z80_op3.c
blob: dd0d43ad02961ac690f3e514edca637716125b6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/* 
 * Copyright (C) 1996-1998 Szeredi Miklos
 * Email: mszeredi@inf.bme.hu
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version. See the file COPYING. 
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */

#ifndef NO_OPDEF
#include "z80_def.h"
#include "z80_op3.h"
#include "z80_ari.h"
#endif

#define ARIR(arin, func, an, rn, r, n) \
OPDEF(arin ## _ ## rn, 0x80+an*8+n)      \
{                                        \
  func(r);                               \
  ENTIME(4);                             \
}

#define ARIIHL(arin, func, an) \
OPDEF(arin ## _ihl, 0x86+an*8)           \
{                                        \
  func(*HLP);                            \
  ENTIME(7);                             \
}

#define ARIID(arin, func, an, ixyn, ixy) \
OPDEF(arin ## _i ## ixyn ## d, 0x86+an*8)\
{                                        \
  register dbyte addr;                   \
  register byte val;                     \
  IXDGET(ixy, addr);                     \
  val = READ(addr);                      \
  func(val);                             \
  ENTIME(15);                            \
}


#define ADD_A_R(rn, r, n) ARIR(add_a, ADD, 0, rn, r, n)
#define ADC_A_R(rn, r, n) ARIR(adc_a, ADC, 1, rn, r, n)
#define SUB_R(rn, r, n)   ARIR(sub,   SUB, 2, rn, r, n)
#define SBC_A_R(rn, r, n) ARIR(sbc_a, SBC, 3, rn, r, n)
#define AND_R(rn, r, n)   ARIR(and,   AND, 4, rn, r, n)
#define XOR_R(rn, r, n)   ARIR(xor,   XOR, 5, rn, r, n)
#define OR_R(rn, r, n)    ARIR(or,    OR,  6, rn, r, n)
#define CP_R(rn, r, n)    ARIR(cp,    CP,  7, rn, r, n)

ADD_A_R(b, RB, 0)
ADD_A_R(c, RC, 1)
ADD_A_R(d, RD, 2)
ADD_A_R(e, RE, 3)
ADD_A_R(h, RH, 4)
ADD_A_R(l, RL, 5)
ADD_A_R(a, RA, 7)

ADC_A_R(b, RB, 0)
ADC_A_R(c, RC, 1)
ADC_A_R(d, RD, 2)
ADC_A_R(e, RE, 3)
ADC_A_R(h, RH, 4)
ADC_A_R(l, RL, 5)
ADC_A_R(a, RA, 7)

SUB_R(b, RB, 0)
SUB_R(c, RC, 1)
SUB_R(d, RD, 2)
SUB_R(e, RE, 3)
SUB_R(h, RH, 4)
SUB_R(l, RL, 5)
SUB_R(a, RA, 7)

SBC_A_R(b, RB, 0)
SBC_A_R(c, RC, 1)
SBC_A_R(d, RD, 2)
SBC_A_R(e, RE, 3)
SBC_A_R(h, RH, 4)
SBC_A_R(l, RL, 5)
SBC_A_R(a, RA, 7)

AND_R(b, RB, 0)
AND_R(c, RC, 1)
AND_R(d, RD, 2)
AND_R(e, RE, 3)
AND_R(h, RH, 4)
AND_R(l, RL, 5)
AND_R(a, RA, 7)

XOR_R(b, RB, 0)
XOR_R(c, RC, 1)
XOR_R(d, RD, 2)
XOR_R(e, RE, 3)
XOR_R(h, RH, 4)
XOR_R(l, RL, 5)
/* XOR_R(a, RA, 7) */

OPDEF(xor_a, 0xAF)
{
  RA = 0;
  RF = (RF & ~(ALLF)) | (ZF | PVF);
  ENTIME(4);
}

OR_R(b, RB, 0)
OR_R(c, RC, 1)
OR_R(d, RD, 2)
OR_R(e, RE, 3)
OR_R(h, RH, 4)
OR_R(l, RL, 5)
OR_R(a, RA, 7)

CP_R(b, RB, 0)
CP_R(c, RC, 1)
CP_R(d, RD, 2)
CP_R(e, RE, 3)
CP_R(h, RH, 4)
CP_R(l, RL, 5)
CP_R(a, RA, 7)

ARIIHL(add_a, ADD, 0)
ARIIHL(adc_a, ADC, 1)
ARIIHL(sub,   SUB, 2)
ARIIHL(sbc_a, SBC, 3)
ARIIHL(and,   AND, 4)
ARIIHL(xor,   XOR, 5)
ARIIHL(or,    OR,  6)
ARIIHL(cp,    CP,  7)

#include "z80_op3x.c"