diff options
author | Michael Pavone <pavone@retrodev.com> | 2014-06-21 09:36:15 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2014-06-21 09:36:15 -0700 |
commit | 24d56647b3b2baa4e7016ac5d66c0167d51688be (patch) | |
tree | 5f0c25ef2d9bf2f84a5a0649c59eae0dc0b58716 /z80_to_x86.h | |
parent | 4c06b02583a69756a7cdf6561c0760087eb642ec (diff) |
Fix Z80 interrupts
Diffstat (limited to 'z80_to_x86.h')
-rw-r--r-- | z80_to_x86.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/z80_to_x86.h b/z80_to_x86.h index fc30179..fdf7866 100644 --- a/z80_to_x86.h +++ b/z80_to_x86.h @@ -56,6 +56,8 @@ typedef struct { uint8_t ram_code_flags[(8 * 1024)/128/8]; uint32_t int_enable_cycle; uint16_t pc; + uint32_t int_pulse_start; + uint32_t int_pulse_end; uint8_t breakpoint_flags[(16 * 1024)/sizeof(uint8_t)]; uint8_t * bp_handler; uint8_t * bp_stub; |