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