summaryrefslogtreecommitdiff
path: root/z80_to_x86.c
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2013-06-06 08:45:54 -0700
committerMike Pavone <pavone@retrodev.com>2013-06-06 08:45:54 -0700
commit871cb9435b2e33f45fd63b76472a7db2ca7bad8d (patch)
tree774576e3645e5419b564e315ad6fe32d20807c97 /z80_to_x86.c
parentd6b80c41a347fd74bd6b06c85b4b54b97a38d07e (diff)
Removed out of date TODO
Diffstat (limited to 'z80_to_x86.c')
-rw-r--r--z80_to_x86.c1
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);