diff options
-rw-r--r-- | z80_to_x86.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/z80_to_x86.c b/z80_to_x86.c index a313f8a..b30c7a1 100644 --- a/z80_to_x86.c +++ b/z80_to_x86.c @@ -897,7 +897,6 @@ uint8_t * translate_z80inst(z80inst * inst, uint8_t * dst, z80_context * context dst = mov_rdisp8r(dst, CONTEXT, offsetof(z80_context, sync_cycle), ZLIMIT, SZ_D); break; case Z80_EI: - //TODO: Implement interrupt enable latency of 1 instruction afer EI dst = zcycles(dst, 4); dst = mov_rrdisp8(dst, ZCYCLES, CONTEXT, offsetof(z80_context, int_enable_cycle), SZ_D); dst = mov_irdisp8(dst, 1, CONTEXT, offsetof(z80_context, iff1), SZ_B); |