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
c199ec2b
Commit
c199ec2b
authored
5 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Clarified purpose of c_boolean_arr and c_nat_boolean_arr.
parent
319c93b5
Branches
Branches containing commit
No related tags found
2 merge requests
!28
Master
,
!15
Resolve L2SDP-27
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/base/common/src/vhdl/common_pkg.vhd
+2
-2
2 additions, 2 deletions
libraries/base/common/src/vhdl/common_pkg.vhd
with
2 additions
and
2 deletions
libraries/base/common/src/vhdl/common_pkg.vhd
+
2
−
2
View file @
c199ec2b
...
...
@@ -123,8 +123,8 @@ PACKAGE common_pkg IS
TYPE
t_slv_512_arr
IS
ARRAY
(
INTEGER
RANGE
<>
)
OF
STD_LOGIC_VECTOR
(
511
DOWNTO
0
);
TYPE
t_slv_1024_arr
IS
ARRAY
(
INTEGER
RANGE
<>
)
OF
STD_LOGIC_VECTOR
(
1023
DOWNTO
0
);
CONSTANT
c_boolean_arr
:
t_boolean_arr
:
=
(
TRUE
,
FALSE
);
-- array
all
possible values that can be iterated over
CONSTANT
c_nat_boolean_arr
:
t_nat_boolean_arr
:
=
(
TRUE
,
FALSE
);
-- array
all
possible values that can be iterated over
CONSTANT
c_boolean_arr
:
t_boolean_arr
:
=
(
TRUE
,
FALSE
);
-- array
the two
possible
boolean
values that can be iterated over
CONSTANT
c_nat_boolean_arr
:
t_nat_boolean_arr
:
=
(
TRUE
,
FALSE
);
-- array
the two
possible
boolean
values that can be iterated over
TYPE
t_integer_matrix
IS
ARRAY
(
INTEGER
RANGE
<>
,
INTEGER
RANGE
<>
)
OF
INTEGER
;
TYPE
t_boolean_matrix
IS
ARRAY
(
INTEGER
RANGE
<>
,
INTEGER
RANGE
<>
)
OF
BOOLEAN
;
...
...
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