This commit is contained in:
redcode
2015-11-13 00:52:45 +01:00
parent 1cdbaa40ca
commit 46e1514ab8

View File

@@ -1363,7 +1363,6 @@ static Instruction const instruction_table_ED[256] = {
/* MARK: - Prefixed Instruction Set Selection and Execution */
#define DD_FD(register) \
zuint8 cycles; \
\
@@ -1396,7 +1395,6 @@ INSTRUCTION(ED_illegal) {PC += 2; return 8;}
/* MARK: - Main Functions */
CPU_Z80_API zsize z80_run(Z80 *object, zsize cycles)
{
zuint32 data;
@@ -1586,6 +1584,8 @@ CPU_Z80_API void z80_nmi(Z80 *object) {NMI = TRUE ;}
CPU_Z80_API void z80_irq(Z80 *object, zboolean state) {INT = state;}
/* MARK: - ABI */
#ifdef CPU_Z80_BUILDING_MODULE
static void will_read_state(Z80 *object) {R = R_ALL;}