Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
HDL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
RTSD
HDL
Commits
b534c5be
Commit
b534c5be
authored
10 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Corrected using txc_rx_channelaligned_arr.
parent
ac6fd25b
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/io/tr_xaui/src/vhdl/tr_xaui.vhd
+2
-3
2 additions, 3 deletions
libraries/io/tr_xaui/src/vhdl/tr_xaui.vhd
with
2 additions
and
3 deletions
libraries/io/tr_xaui/src/vhdl/tr_xaui.vhd
+
2
−
3
View file @
b534c5be
...
@@ -109,7 +109,6 @@ ARCHITECTURE str OF tr_xaui IS
...
@@ -109,7 +109,6 @@ ARCHITECTURE str OF tr_xaui IS
SIGNAL
txc_tx_ready_arr
:
STD_LOGIC_VECTOR
(
g_nof_xaui
-1
DOWNTO
0
);
SIGNAL
txc_tx_ready_arr
:
STD_LOGIC_VECTOR
(
g_nof_xaui
-1
DOWNTO
0
);
SIGNAL
rxc_rx_ready_arr
:
STD_LOGIC_VECTOR
(
g_nof_xaui
-1
DOWNTO
0
);
SIGNAL
rxc_rx_ready_arr
:
STD_LOGIC_VECTOR
(
g_nof_xaui
-1
DOWNTO
0
);
SIGNAL
txc_rx_channelaligned_arr
:
STD_LOGIC_VECTOR
(
g_nof_xaui
-1
DOWNTO
0
);
SIGNAL
txc_rx_channelaligned_arr
:
STD_LOGIC_VECTOR
(
g_nof_xaui
-1
DOWNTO
0
);
SIGNAL
txc_rx_channelaligned_dly_arr
:
STD_LOGIC_VECTOR
(
g_nof_xaui
-1
DOWNTO
0
);
SIGNAL
tx_framer_siso_arr
:
t_dp_siso_arr
(
g_nof_xaui
-1
DOWNTO
0
);
SIGNAL
tx_framer_siso_arr
:
t_dp_siso_arr
(
g_nof_xaui
-1
DOWNTO
0
);
SIGNAL
tx_framer_sosi_arr
:
t_dp_sosi_arr
(
g_nof_xaui
-1
DOWNTO
0
);
SIGNAL
tx_framer_sosi_arr
:
t_dp_sosi_arr
(
g_nof_xaui
-1
DOWNTO
0
);
...
@@ -171,8 +170,8 @@ BEGIN
...
@@ -171,8 +170,8 @@ BEGIN
xgmii_rx_d_arr
(
i
)
<=
func_xgmii_d
(
xgmii_rx_dc_out_arr
(
i
));
xgmii_rx_d_arr
(
i
)
<=
func_xgmii_d
(
xgmii_rx_dc_out_arr
(
i
));
xgmii_rx_c_arr
(
i
)
<=
func_xgmii_c
(
xgmii_rx_dc_out_arr
(
i
));
xgmii_rx_c_arr
(
i
)
<=
func_xgmii_c
(
xgmii_rx_dc_out_arr
(
i
));
tx_siso_arr
(
i
)
.
ready
<=
'0'
WHEN
txc_rx_channelaligned_
dly_
arr
(
i
)
=
'0'
ELSE
tx_framer_siso_arr
(
i
)
.
ready
;
tx_siso_arr
(
i
)
.
ready
<=
'0'
WHEN
txc_rx_channelaligned_arr
(
i
)
=
'0'
ELSE
tx_framer_siso_arr
(
i
)
.
ready
;
tx_siso_arr
(
i
)
.
xon
<=
txc_rx_channelaligned_
dly_
arr
(
i
);
tx_siso_arr
(
i
)
.
xon
<=
txc_rx_channelaligned_arr
(
i
);
tx_framer_sosi_arr
(
i
)
<=
tx_sosi_arr
(
i
);
tx_framer_sosi_arr
(
i
)
<=
tx_sosi_arr
(
i
);
...
...
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