Skip to content
Snippets Groups Projects
Commit b16eb5e6 authored by Reinier van der Walle's avatar Reinier van der Walle
Browse files

corrected ELSIF order

parent 0621ddad
No related branches found
No related tags found
1 merge request!124Resolve L2SDP-271
......@@ -91,12 +91,12 @@ BEGIN
nxt_count <= reg_count;
IF cnt_clr='1' THEN
nxt_count <= (OTHERS => '0');
ELSIF cnt_ld='1' THEN
nxt_count <= load;
ELSIF reg_count=cnt_max THEN
IF NOT g_clip THEN
nxt_count <= (OTHERS => '0');
END IF;
ELSIF cnt_ld='1' THEN
nxt_count <= load;
ELSIF cnt_en='1' THEN
nxt_count <= INCR_UVEC(reg_count, g_step_size);
END IF;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment