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
fd369dbc
Commit
fd369dbc
authored
1 year ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Correct p_verify_crosslets using vector_or() and init values.
parent
1ae1e27c
No related branches found
Branches containing commit
No related tags found
1 merge request
!390
Resolve L2SDP-1013 "B"
Pipeline
#76182
passed
1 year ago
Stage: linting
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
applications/lofar2/libraries/sdp/tb/vhdl/tb_sdp_crosslets_remote_ring.vhd
+3
-3
3 additions, 3 deletions
...r2/libraries/sdp/tb/vhdl/tb_sdp_crosslets_remote_ring.vhd
with
3 additions
and
3 deletions
applications/lofar2/libraries/sdp/tb/vhdl/tb_sdp_crosslets_remote_ring.vhd
+
3
−
3
View file @
fd369dbc
...
...
@@ -403,9 +403,9 @@ architecture tb of tb_sdp_crosslets_remote_ring is
signal
crosslets_copi_arr
:
t_mem_copi_arr
(
c_last_rn
downto
0
)
:
=
(
others
=>
c_mem_copi_rst
);
signal
crosslets_cipo_2arr
:
t_crosslets_cipo_2arr
(
c_last_rn
downto
0
);
signal
x_sosi_2arr
:
t_crosslets_sosi_2arr
(
c_last_rn
downto
0
);
signal
x_sosi_2arr_valids
:
std_logic_vector
(
g_nof_rn
*
c_P_sq
-
1
downto
0
);
signal
x_sosi_2arr_valids
:
std_logic_vector
(
g_nof_rn
*
c_P_sq
-
1
downto
0
)
:
=
(
others
=>
'0'
)
;
signal
x_sosi_arr
:
t_dp_sosi_arr
(
c_last_rn
downto
0
);
signal
x_sosi
:
t_dp_sosi
;
signal
x_sosi
:
t_dp_sosi
:
=
c_dp_sosi_rst
;
-- 10GbE ring
signal
tr_10gbe_ring_rx_sosi_arr
:
t_dp_sosi_arr
(
c_last_rn
downto
0
)
:
=
(
others
=>
c_dp_sosi_rst
);
...
...
@@ -842,7 +842,7 @@ begin
if
x_sosi
.
valid
=
'1'
then
assert
vector_and
(
x_sosi_2arr_valids
)
=
'1'
report
"Missing aligned output valid"
severity
error
;
else
assert
vector_
and
(
x_sosi_2arr_valids
)
=
'0'
report
"Unexpected aligned output valid"
severity
error
;
assert
vector_
or
(
x_sosi_2arr_valids
)
=
'0'
report
"Unexpected aligned output valid"
severity
error
;
end
if
;
end
process
;
...
...
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