projects
/
wenboi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1aa5165
)
Little flaw in DAA, but I think it's not correct yet.
author
slack
<slack@codemaniacs.com>
Sat, 20 Sep 2008 17:43:13 +0000
(19:43 +0200)
committer
slack
<slack@codemaniacs.com>
Sat, 20 Sep 2008 17:43:13 +0000
(19:43 +0200)
gbcore.cc
patch
|
blob
|
history
diff --git
a/gbcore.cc
b/gbcore.cc
index 7e9d48dff920b92b0d7932682a560b9db8965797..78c2e642bc94a2ac4481e6428beced38605b2764 100644
(file)
--- a/
gbcore.cc
+++ b/
gbcore.cc
@@
-351,7
+351,7
@@
GameBoy::run_status GameBoy::run_cycle()
reset_flag(CARRY_FLAG);
}
- if (
regs.A & 0x0F
> 9 || check_flag(HALF_CARRY_FLAG)) {
+ if (
(regs.A & 0x0F)
> 9 || check_flag(HALF_CARRY_FLAG)) {
corr_factor |= 0x06;
}