Skip to content
GitLab
Explore
Sign in
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
e62dc2fe
Commit
e62dc2fe
authored
9 years ago
by
Pepping
Browse files
Options
Downloads
Patches
Plain Diff
Made some alignments
parent
90a82285
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
libraries/base/dp/src/vhdl/dp_reinterleave.vhd
+12
-12
12 additions, 12 deletions
libraries/base/dp/src/vhdl/dp_reinterleave.vhd
with
12 additions
and
12 deletions
libraries/base/dp/src/vhdl/dp_reinterleave.vhd
+
12
−
12
View file @
e62dc2fe
...
@@ -41,14 +41,14 @@ USE work.dp_stream_pkg.ALL;
...
@@ -41,14 +41,14 @@ USE work.dp_stream_pkg.ALL;
ENTITY
dp_reinterleave
IS
ENTITY
dp_reinterleave
IS
GENERIC
(
GENERIC
(
g_dat_w
:
NATURAL
;
g_dat_w
:
NATURAL
;
-- Width of the data. Either the width of the datafield or the re and im field combined.
g_nof_in
:
NATURAL
;
g_nof_in
:
NATURAL
;
-- Number of input streams
g_deint_block_size
:
NATURAL
;
-- Inputs streams will be de-interleaved using this block size. Should match block_size_out when g_use_ctrl=TRUE
g_deint_block_size
:
NATURAL
;
-- Inputs streams will be de-interleaved using this block size. Should match block_size_out when g_use_ctrl=TRUE
g_nof_out
:
NATURAL
;
g_nof_out
:
NATURAL
;
-- The number of output streams
g_inter_block_size
:
NATURAL
;
-- Outputs streams will be interleaved using this block size. Should match block_size_in when g_use_ctrl=TRUE
g_inter_block_size
:
NATURAL
;
-- Outputs streams will be interleaved using this block size. Should match block_size_in when g_use_ctrl=TRUE
g_use_ctrl
:
BOOLEAN
:
=
TRUE
;
g_use_ctrl
:
BOOLEAN
:
=
TRUE
;
g_use_complex
:
BOOLEAN
;
g_use_complex
:
BOOLEAN
;
g_align_out
:
BOOLEAN
:
=
FALSE
g_align_out
:
BOOLEAN
:
=
FALSE
);
);
PORT
(
PORT
(
rst
:
IN
STD_LOGIC
;
rst
:
IN
STD_LOGIC
;
...
@@ -100,12 +100,12 @@ BEGIN
...
@@ -100,12 +100,12 @@ BEGIN
u_reinterleave
:
ENTITY
common_lib
.
common_reinterleave
u_reinterleave
:
ENTITY
common_lib
.
common_reinterleave
GENERIC
MAP
(
GENERIC
MAP
(
g_nof_in
=>
g_nof_in
,
g_nof_in
=>
g_nof_in
,
g_deint_block_size
=>
g_deint_block_size
,
g_deint_block_size
=>
g_deint_block_size
,
g_nof_out
=>
g_nof_out
,
g_nof_out
=>
g_nof_out
,
g_inter_block_size
=>
g_inter_block_size
,
g_inter_block_size
=>
g_inter_block_size
,
g_dat_w
=>
g_dat_w
,
g_dat_w
=>
g_dat_w
,
g_align_out
=>
g_align_out
g_align_out
=>
g_align_out
)
)
PORT
MAP
(
PORT
MAP
(
rst
=>
rst
,
rst
=>
rst
,
...
...
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