git.joshuawise.com
/
fpgaboy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9c834ff
)
Bugfix for SCF
author
Joshua Wise
<joshua@rebirth.joshuawise.com>
Sun, 6 Apr 2008 05:04:37 +0000
(
01:04
-0400)
committer
Joshua Wise
<joshua@rebirth.joshuawise.com>
Sun, 6 Apr 2008 05:04:37 +0000
(
01:04
-0400)
GBZ80Core.v
patch
|
blob
|
blame
|
history
diff --git
a/GBZ80Core.v
b/GBZ80Core.v
index
ae6ff00
..
fef4de2
100644
(file)
--- a/
GBZ80Core.v
+++ b/
GBZ80Core.v
@@
-843,7
+843,7
@@
module GBZ80Core(
registers[`REG_F] <= {registers[`REG_F][7],1'b1,1'b1,registers[`REG_F][4:0]};
end
`INSN_alu_SCF: begin
- registers[`REG_F] <= {registers[`REG_F][7:5],1,registers[`REG_F][3:0]};
+ registers[`REG_F] <= {registers[`REG_F][7:5],1
'b1
,registers[`REG_F][3:0]};
end
`INSN_alu_CCF: begin
registers[`REG_F] <= {registers[`REG_F][7:5],~registers[`REG_F][4],registers[`REG_F][3:0]};
This page took
0.022757 seconds
and
4
git commands to generate.