projects
/
microwatt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8b88e26
)
Fix issue in execute2
author
Anton Blanchard
<anton@linux.ibm.com>
Wed, 11 Sep 2019 12:39:30 +0000
(22:39 +1000)
committer
Anton Blanchard
<anton@ozlabs.org>
Wed, 11 Sep 2019 12:39:30 +0000
(22:39 +1000)
We weren't using the register in this stage.
Fixes: c7aa683ba8aa ("Register outputs on execute2")
Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
execute2.vhdl
patch
|
blob
|
history
diff --git
a/execute2.vhdl
b/execute2.vhdl
index c7cf61e0a631daf2eb8c3e9fa7a2506e228a7ba6..79422742af2c920a38c1d45f69b940f8ddda973f 100644
(file)
--- a/
execute2.vhdl
+++ b/
execute2.vhdl
@@
-52,6
+52,6
@@
begin
rin <= v;
-- Update outputs
- e_out <=
v
;
+ e_out <=
r
;
end process;
end;