aboutsummaryrefslogtreecommitdiff
path: root/src/opcodes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/opcodes.rs')
-rw-r--r--src/opcodes.rs4
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)