From 5fc4fb3dbceecac2e3145845fc186b582940dc19 Mon Sep 17 00:00:00 2001 From: Eric Kooistra <kooistra@astron.nl> Date: Tue, 23 Jun 2020 15:42:07 +0200 Subject: [PATCH] Fixed expected cnt. --- libraries/dsp/si/tb/vhdl/tb_si.vhd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/dsp/si/tb/vhdl/tb_si.vhd b/libraries/dsp/si/tb/vhdl/tb_si.vhd index 53f5b2536a..cf715e2cbb 100755 --- a/libraries/dsp/si/tb/vhdl/tb_si.vhd +++ b/libraries/dsp/si/tb/vhdl/tb_si.vhd @@ -238,8 +238,8 @@ BEGIN END IF; ELSE -- Verify expected number of clip_even (when in_sop is at even) and clip_odd (when in_sop is at odd) - ASSERT cnt_even = 12 REPORT "Wrong number of expected c_min to c_max at even index" SEVERITY ERROR; - ASSERT cnt_odd = 4 REPORT "Wrong number of expected clipped c_min to c_max at odd index" SEVERITY ERROR; + ASSERT cnt_even = 4 REPORT "Wrong number of expected clipped c_min to c_max at even index" SEVERITY ERROR; + ASSERT cnt_odd = 12 REPORT "Wrong number of expected clipped c_min to c_max at odd index" SEVERITY ERROR; WAIT; END IF; END PROCESS; -- GitLab