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
40ed1f62
Commit
40ed1f62
authored
7 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Corrected missing force_en signal in sensitivity list.
parent
a15f46a1
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/base/dp/src/vhdl/dp_force_data_parallel.vhd
+6
-6
6 additions, 6 deletions
libraries/base/dp/src/vhdl/dp_force_data_parallel.vhd
with
6 additions
and
6 deletions
libraries/base/dp/src/vhdl/dp_force_data_parallel.vhd
+
6
−
6
View file @
40ed1f62
...
@@ -29,11 +29,11 @@
...
@@ -29,11 +29,11 @@
-- made to automatically increment for every valid and restart at sync or
-- made to automatically increment for every valid and restart at sync or
-- sop.
-- sop.
-- Usage:
-- Usage:
-- . DSP tests:
C
onstant
(zero)
data is useful
for DSP tests to be able to
-- . DSP tests:
The amplitude of c
onstant data is useful
to verify scaling and
-- re
cognize a particular data stream in an array of streams
.
-- re
quantization
.
-- . Data move test:
Incrementing data or a combination of constant re and
-- . Data move test:
Forcing constant (zero) data is useful for to trace data
--
incrementing im is useful for data move test when the data gets
--
when the data gets reordered. A combination of constant re and
--
reordered
.
--
incrementing im can also be useful to trace data
.
-- Remarks:
-- Remarks:
-- . Ready latency = 1
-- . Ready latency = 1
-- . When force_en='0' then this dp_force_data_parallel is equivalent to
-- . When force_en='0' then this dp_force_data_parallel is equivalent to
...
@@ -83,7 +83,7 @@ ARCHITECTURE str OF dp_force_data_parallel IS
...
@@ -83,7 +83,7 @@ ARCHITECTURE str OF dp_force_data_parallel IS
BEGIN
BEGIN
p_comb
:
PROCESS
(
snk_in
,
force_data
,
force_re
,
force_im
,
data_out
)
p_comb
:
PROCESS
(
snk_in
,
force_en
,
force_data
,
force_re
,
force_im
,
data_out
)
BEGIN
BEGIN
data_in
<=
snk_in
;
data_in
<=
snk_in
;
IF
force_en
=
'1'
THEN
IF
force_en
=
'1'
THEN
...
...
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