Skip to content

Commit

Permalink
Match register naming
Browse files Browse the repository at this point in the history
  • Loading branch information
commonkestrel committed Dec 1, 2023
1 parent 47bf09a commit 8192fc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/emulator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -432,11 +432,11 @@ impl fmt::Display for RegBank {
REGISTER C: {:#04X}\n\
REGISTER D: {:#04X}\n\
REGISTER E: {:#04X}\n\
REGISTER F: {:#04X}\n\
REGISTER H: {:#04X}\n\
REGISTER L: {:#04X}\n\
REGISTER F: {:#04X}\n\
",
self.a, self.b, self.c, self.d, self.e, self.h, self.l, self.f,
self.a, self.b, self.c, self.d, self.e, self.f, self.h, self.l,
)
}
}
Expand Down

0 comments on commit 8192fc2

Please sign in to comment.