diff options
author | Michael Pavone <pavone@retrodev.com> | 2014-06-19 08:14:35 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2014-06-19 08:14:35 -0700 |
commit | e8e8075b59f9e4a6a8e9b1cc96f2fcb447fa508e (patch) | |
tree | 8971665973661edd926c5162fb5f9e9927c2f77b /z80_to_x86.c | |
parent | e97e4c2823337d68efdc8191f73d15b532a2130e (diff) |
Slight cleanup of vint handling on the Z80
Diffstat (limited to 'z80_to_x86.c')
-rw-r--r-- | z80_to_x86.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/z80_to_x86.c b/z80_to_x86.c index 2cab1c9..ea07214 100644 --- a/z80_to_x86.c +++ b/z80_to_x86.c @@ -1964,6 +1964,7 @@ void init_z80_context(z80_context * context, x86_z80_options * options) context->banked_code_map = malloc(sizeof(native_map_slot) * (1 << 9)); memset(context->banked_code_map, 0, sizeof(native_map_slot) * (1 << 9)); context->options = options; + context->int_cycle = 0xFFFFFFFF; } void z80_reset(z80_context * context) |