Skip to content
Snippets Groups Projects
Commit 40ed1f62 authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Corrected missing force_en signal in sensitivity list.

parent a15f46a1
No related branches found
No related tags found
No related merge requests found
...@@ -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: Constant (zero) data is useful for DSP tests to be able to -- . DSP tests: The amplitude of constant data is useful to verify scaling and
-- recognize a particular data stream in an array of streams. -- requantization.
-- . 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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment