diff options
author | Astatin <[email protected]> | 2025-05-22 00:07:30 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-05-22 00:07:30 +0200 |
commit | 4fce95c86e12f91e127605d440118e1b6a64208b (patch) | |
tree | 729ff48e04be1c6fef42a45afb17c0d0a2259ec1 /src/opcodes.rs | |
parent | 9a8e4117be8d30109229600346e7d9561c52a3e3 (diff) |
Save wram,vram,io,hram with X button + move big arrays to Heap
Diffstat (limited to 'src/opcodes.rs')
-rw-r--r-- | src/opcodes.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/opcodes.rs b/src/opcodes.rs index 26e98c5..3779af0 100644 --- a/src/opcodes.rs +++ b/src/opcodes.rs @@ -1,5 +1,5 @@ +use crate::io::{Audio, Serial}; use crate::state::{flag, reg, GBState, MemError}; -use crate::io::{Serial, Audio}; // The opcodes functions are returning the number of cycles used. @@ -750,7 +750,7 @@ impl<S: Serial, A: Audio> GBState<S, A> { 0b010 => { self.cpu.print_debug(); Ok(4) - }, + } 0b110 => { self.mem.ime = false; Ok(4) |