Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HDL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RTSD
HDL
Commits
b16eb5e6
Commit
b16eb5e6
authored
3 years ago
by
Reinier van der Walle
Browse files
Options
Downloads
Patches
Plain Diff
corrected ELSIF order
parent
0621ddad
No related branches found
No related tags found
1 merge request
!124
Resolve L2SDP-271
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/base/common/src/vhdl/common_counter.vhd
+2
-2
2 additions, 2 deletions
libraries/base/common/src/vhdl/common_counter.vhd
with
2 additions
and
2 deletions
libraries/base/common/src/vhdl/common_counter.vhd
+
2
−
2
View file @
b16eb5e6
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment