Move flags and eflags variables into cpu_struct.
This commit is contained in:
parent
c1565eb42f
commit
a4d3aa1912
25 changed files with 1013 additions and 958 deletions
|
|
@ -4,7 +4,7 @@
|
|||
if (temp) \
|
||||
{ \
|
||||
int c; \
|
||||
flags &= ~Z_FLAG; \
|
||||
cpu_state.flags &= ~Z_FLAG; \
|
||||
for (c = start; c != end; c += dir) \
|
||||
{ \
|
||||
CLOCK_CYCLES(time); \
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
} \
|
||||
} \
|
||||
else \
|
||||
flags |= Z_FLAG;
|
||||
cpu_state.flags |= Z_FLAG;
|
||||
|
||||
static int opBSF_w_a16(uint32_t fetchdat)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue