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

Merge branch 'L2SDP-416' into 'master'

fixed counter bug.

Closes L2SDP-416

See merge request desp/hdl!128
parents dd5c4408 0f01cfaa
Branches
Tags
1 merge request!128fixed counter bug.
......@@ -93,7 +93,7 @@ BEGIN
nxt_count <= (OTHERS => '0');
ELSIF cnt_ld='1' THEN
nxt_count <= load;
ELSIF reg_count=cnt_max THEN
ELSIF cnt_en='1' AND reg_count=cnt_max THEN
IF NOT g_clip THEN
nxt_count <= (OTHERS => '0');
END IF;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment