Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fpga-network-stack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
paulrr2
fpga-network-stack
Commits
666993aa
Commit
666993aa
authored
5 years ago
by
mchiosa
Browse files
Options
Downloads
Patches
Plain Diff
Solve signal name problem in hdl/common/roce_stack.sv for 10G synthesis
parent
00e3c5b8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hdl/common/roce_stack.sv
+4
-4
4 additions, 4 deletions
hdl/common/roce_stack.sv
with
4 additions
and
4 deletions
hdl/common/roce_stack.sv
+
4
−
4
View file @
666993aa
...
...
@@ -197,10 +197,10 @@ axis_512_to_64_converter roce_read_data_converter (
axis_512_to_64_converter
roce_tx_data_converter
(
.
aclk
(
net_clk
),
// input wire aclk
.
aresetn
(
net_aresetn
),
// input wire aresetn
.
s_axis_tvalid
(
s_axis_
roce_role_
tx_data
.
valid
),
// input wire s_axis_tvalid
.
s_axis_tready
(
s_axis_
roce_role_
tx_data
.
ready
),
// output wire s_axis_tready
.
s_axis_tdata
(
s_axis_
roce_role_
tx_data
.
data
),
// input wire [63 : 0] s_axis_tdata
.
s_axis_tkeep
(
s_axis_
roce_role_
tx_data
.
keep
),
// input wire [7 : 0] s_axis_tkeep
.
s_axis_tvalid
(
s_axis_tx_data
.
valid
),
// input wire s_axis_tvalid
.
s_axis_tready
(
s_axis_tx_data
.
ready
),
// output wire s_axis_tready
.
s_axis_tdata
(
s_axis_tx_data
.
data
),
// input wire [63 : 0] s_axis_tdata
.
s_axis_tkeep
(
s_axis_tx_data
.
keep
),
// input wire [7 : 0] s_axis_tkeep
.
s_axis_tlast
(
s_axis_tx_data
.
last
),
// input wire s_axis_tlast
.
m_axis_tvalid
(
axis_tx_data
.
valid
),
// output wire m_axis_tvalid
.
m_axis_tready
(
axis_tx_data
.
ready
),
// input wire m_axis_tready
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment