projects
/
soc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f83805
)
Fix broken test_decoder_gas
author
Michael Nolan
<mtnolan2640@gmail.com>
Tue, 5 May 2020 18:40:46 +0000
(14:40 -0400)
committer
Michael Nolan
<mtnolan2640@gmail.com>
Tue, 5 May 2020 18:40:46 +0000
(14:40 -0400)
src/soc/decoder/power_decoder2.py
patch
|
blob
|
history
diff --git
a/src/soc/decoder/power_decoder2.py
b/src/soc/decoder/power_decoder2.py
index 5720e60103b889397031ede9df43ad4ebbeb2ac6..4a3785efaba9c03d76a0159f19e4cab0219d0b7d 100644
(file)
--- a/
src/soc/decoder/power_decoder2.py
+++ b/
src/soc/decoder/power_decoder2.py
@@
-374,7
+374,8
@@
class PowerDecode2(Elaboratable):
with m.Case(LdstLen.is8B):
comb += self.e.data_len.eq(8)
- #comb += self.e.nia.eq(self.dec.nia) # XXX TODO
+ comb += self.e.nia.eq(0) # XXX TODO
+ comb += self.e.valid.eq(0) # XXX TODO
fu = self.dec.op.function_unit
itype = Mux(fu == Function.NONE,
InternalOp.OP_ILLEGAL,