diff z80_to_x86.c @ 625:6aa2a8ab9c70

Slight cleanup of vint handling on the Z80
author Michael Pavone <pavone@retrodev.com>
date Thu, 19 Jun 2014 08:14:35 -0700
parents a3b48a57e847
children 7c46891a29b1
line wrap: on
line diff
--- a/z80_to_x86.c	Wed Jun 18 16:39:42 2014 -0700
+++ b/z80_to_x86.c	Thu Jun 19 08:14:35 2014 -0700
@@ -1964,6 +1964,7 @@
 	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)