2022-11-19 10:40:32 -05:00
|
|
|
#define opSET(condition) \
|
|
|
|
|
static int opSET##condition##_a16(uint32_t fetchdat) \
|
|
|
|
|
{ \
|
|
|
|
|
fetch_ea_16(fetchdat); \
|
|
|
|
|
if (cpu_mod != 3) \
|
|
|
|
|
SEG_CHECK_READ(cpu_state.ea_seg); \
|
|
|
|
|
seteab((cond_##condition) ? 1 : 0); \
|
|
|
|
|
CLOCK_CYCLES(4); \
|
|
|
|
|
return cpu_state.abrt; \
|
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
static int opSET##condition##_a32(uint32_t fetchdat) \
|
|
|
|
|
{ \
|
|
|
|
|
fetch_ea_32(fetchdat); \
|
|
|
|
|
if (cpu_mod != 3) \
|
|
|
|
|
SEG_CHECK_READ(cpu_state.ea_seg); \
|
|
|
|
|
seteab((cond_##condition) ? 1 : 0); \
|
|
|
|
|
CLOCK_CYCLES(4); \
|
|
|
|
|
return cpu_state.abrt; \
|
|
|
|
|
}
|
2016-06-26 00:34:39 +02:00
|
|
|
|
2022-11-19 10:43:42 -05:00
|
|
|
// clang-format off
|
2016-06-26 00:34:39 +02:00
|
|
|
opSET(O)
|
|
|
|
|
opSET(NO)
|
|
|
|
|
opSET(B)
|
|
|
|
|
opSET(NB)
|
|
|
|
|
opSET(E)
|
|
|
|
|
opSET(NE)
|
|
|
|
|
opSET(BE)
|
|
|
|
|
opSET(NBE)
|
|
|
|
|
opSET(S)
|
|
|
|
|
opSET(NS)
|
|
|
|
|
opSET(P)
|
|
|
|
|
opSET(NP)
|
|
|
|
|
opSET(L)
|
|
|
|
|
opSET(NL)
|
|
|
|
|
opSET(LE)
|
|
|
|
|
opSET(NLE)
|
2023-08-11 13:00:04 -04:00
|
|
|
// clang-format on
|