Add missing files from last commit.
This commit is contained in:
parent
9312de19ac
commit
f822488656
89 changed files with 18428 additions and 6383 deletions
33
src/x86_ops_set.h
Normal file
33
src/x86_ops_set.h
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
#define opSET(condition) \
|
||||
static int opSET ## condition ## _a16(uint32_t fetchdat) \
|
||||
{ \
|
||||
fetch_ea_16(fetchdat); \
|
||||
seteab((cond_ ## condition) ? 1 : 0); \
|
||||
cycles -= 4; \
|
||||
return 0; \
|
||||
} \
|
||||
\
|
||||
static int opSET ## condition ## _a32(uint32_t fetchdat) \
|
||||
{ \
|
||||
fetch_ea_32(fetchdat); \
|
||||
seteab((cond_ ## condition) ? 1 : 0); \
|
||||
cycles -= 4; \
|
||||
return 0; \
|
||||
}
|
||||
|
||||
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)
|
||||
Loading…
Reference in a new issue