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
6fded7de
Commit
6fded7de
authored
10 years ago
by
Kenneth Hiemstra
Browse files
Options
Downloads
Patches
Plain Diff
fixed syntax errors
parent
1065b0c2
No related branches found
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/technology/flash/tech_flash_component_pkg.vhd
+14
-4
14 additions, 4 deletions
libraries/technology/flash/tech_flash_component_pkg.vhd
with
14 additions
and
4 deletions
libraries/technology/flash/tech_flash_component_pkg.vhd
+
14
−
4
View file @
6fded7de
...
...
@@ -112,18 +112,28 @@ PACKAGE tech_flash_component_pkg IS
function
flash_addr_w
(
technology
:
in
integer
)
return
integer
;
function
flash_data_w
(
technology
:
in
integer
)
return
integer
;
END
tech_flash_component_pkg
;
package
body
tech_flash_component_pkg
is
function
flash_addr_w
(
technology
:
in
integer
)
return
integer
is
begin
if
technology
=
c_tech_stratixiv
then
return
24
end
if
;
if
technology
=
c_tech_arria10
then
return
32
end
if
;
if
technology
=
c_tech_stratixiv
then
return
24
;
end
if
;
if
technology
=
c_tech_arria10
then
return
32
;
end
if
;
end
;
function
flash_data_w
(
technology
:
in
integer
)
return
integer
is
begin
if
technology
=
c_tech_stratixiv
then
return
24
end
if
;
if
technology
=
c_tech_arria10
then
return
32
end
if
;
if
technology
=
c_tech_stratixiv
then
return
24
;
end
if
;
if
technology
=
c_tech_arria10
then
return
32
;
end
if
;
end
;
...
...
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