Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Platform-independent core collection
Manage
Activity
Members
Labels
Plan
Issues
15
Issue boards
Milestones
Wiki
Code
Merge requests
5
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
Platform-independent core collection
Commits
ed8e6a09
Commit
ed8e6a09
authored
12 years ago
by
Grzegorz Daniluk
Browse files
Options
Downloads
Patches
Plain Diff
gc_extend_pulse: save some resources, don't need to use fixed size 32-bit counter
parent
0bed3fe2
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/common/gc_extend_pulse.vhd
+2
-1
2 additions, 1 deletion
modules/common/gc_extend_pulse.vhd
with
2 additions
and
1 deletion
modules/common/gc_extend_pulse.vhd
+
2
−
1
View file @
ed8e6a09
...
...
@@ -46,6 +46,7 @@ use ieee.NUMERIC_STD.all;
library
work
;
use
work
.
gencores_pkg
.
all
;
use
work
.
genram_pkg
.
all
;
entity
gc_extend_pulse
is
...
...
@@ -64,7 +65,7 @@ end gc_extend_pulse;
architecture
rtl
of
gc_extend_pulse
is
signal
cntr
:
unsigned
(
3
1
downto
0
);
signal
cntr
:
unsigned
(
f_log2_size
(
g_width
)
-
1
downto
0
);
signal
extended_int
:
std_logic
;
begin
-- rtl
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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