Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Axi Pulp
Commits
190e8054
Commit
190e8054
authored
5 years ago
by
Andreas Kurth
Browse files
Options
Download
Email Patches
Plain Diff
write_burst_packer: Fix buffer underrun
parent
83790f7a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/axi_write_burst_packer.sv
+1
-1
src/axi_write_burst_packer.sv
with
1 addition
and
1 deletion
+1
-1
src/axi_write_burst_packer.sv
+
1
-
1
View file @
190e8054
...
...
@@ -199,7 +199,7 @@ module axi_write_burst_packer #(
end
// Otherwise, if the FIFO is full or if there is at least one complete multi-beat burst in
// the FIFO, drain the FIFO.
end
else
if
(
w_buf_full
||
w_compl_d
>
0
)
begin
end
else
if
(
w_buf_full
||
(
!
w_buf_empty
&&
w_compl_d
>
0
)
)
begin
mst_w_valid
=
1'b1
;
aw_pend_inc
=
1'b1
;
state_d
=
Drain
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
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