We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3b9282 commit 8b262a2Copy full SHA for 8b262a2
src/cpu.rs
@@ -8,7 +8,7 @@ use super::opcode::Opcode;
8
use super::registers::{Reg16, Reg8, Registers};
9
use super::state::State;
10
11
-const IRQ_ADDRESS: u16 = 0x0036;
+const IRQ_ADDRESS: u16 = 0x0038;
12
const NMI_ADDRESS: u16 = 0x0066;
13
14
/// The Z80 cpu emulator.
tests/interrupts.rs
@@ -1,6 +1,6 @@
1
use iz80::*;
2
3
4
5
#[test]
6
fn test_ei() {
0 commit comments