Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tapasco
tapasco
Commits
3447f7f1
Commit
3447f7f1
authored
Jul 21, 2016
by
Jens Korinth
Browse files
FifoAxiAdapter: Fix WSTRB field
* WSTRB now correctly adapts to dataWidth (all bytes enabled)
parent
4f3e1b66
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/scala/FifoAxiAdapter.scala
View file @
3447f7f1
...
...
@@ -46,7 +46,7 @@ class FifoAxiAdapter(addrWidth: Int,
io
.
maxi
.
writeData
.
bits
.
data
:=
data
io
.
maxi
.
writeData
.
bits
.
last
:=
Bool
(
true
)
io
.
maxi
.
writeData
.
bits
.
strb
:=
UInt
(
"b
1111"
)
io
.
maxi
.
writeData
.
bits
.
strb
:=
UInt
(
"b
"
+
(
"1"
*
(
dataWidth
/
8
))
)
io
.
maxi
.
writeData
.
valid
:=
!
reset
&&
wdata_valid
&&
!
data_hs
io
.
maxi
.
writeResp
.
ready
:=
Bool
(
true
)
...
...
Jens Korinth
@jk
mentioned in commit
17f0d672
·
Mar 05, 2018
mentioned in commit
17f0d672
mentioned in commit 17f0d67240ebf5d7e1d0be9162d272b04256c47d
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment