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

Initialize a_sint = 0 to avoid assert error at 0 ps.

parent 2278f839
No related branches found
No related tags found
1 merge request!162L2SDP-214
......@@ -63,7 +63,7 @@ ARCHITECTURE tb OF tb_common_to_sreal IS
SIGNAL rst : STD_LOGIC := '1';
SIGNAL a_real : REAL := 0.0;
SIGNAL a_sint : INTEGER;
SIGNAL a_sint : INTEGER := 0;
SIGNAL a_slv : STD_LOGIC_VECTOR(c_width-1 DOWNTO 0) := (OTHERS => '0');
SIGNAL dbg_resolution_w : INTEGER := 0;
SIGNAL dbg_resolution : REAL := 0.0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment