Skip to content
GitLab
Explore
Sign in
Register
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
3f059628
Commit
3f059628
authored
9 years ago
by
Pepping
Browse files
Options
Downloads
Patches
Plain Diff
Replaced port types
parent
584a3f4e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/io/ddr3/src/vhdl/ddr3.vhd
+6
-5
6 additions, 5 deletions
libraries/io/ddr3/src/vhdl/ddr3.vhd
with
6 additions
and
5 deletions
libraries/io/ddr3/src/vhdl/ddr3.vhd
+
6
−
5
View file @
3f059628
...
...
@@ -24,13 +24,14 @@
LIBRARY
ip_stratixiv_ddr3_uphy_4g_800_master_lib
;
LIBRARY
ip_stratixiv_ddr3_uphy_4g_800_slave_lib
;
LIBRARY
IEEE
,
common_lib
,
dp_lib
;
LIBRARY
IEEE
,
common_lib
,
dp_lib
,
tech_ddr_lib
;
USE
IEEE
.
STD_LOGIC_1164
.
ALL
;
USE
IEEE
.
NUMERIC_STD
.
ALL
;
USE
common_lib
.
common_pkg
.
ALL
;
USE
common_lib
.
common_mem_pkg
.
ALL
;
USE
work
.
ddr3_pkg
.
ALL
;
USE
dp_lib
.
dp_stream_pkg
.
ALL
;
USE
tech_ddr_lib
.
tech_ddr_pkg
.
ALL
;
USE
work
.
ddr3_pkg
.
ALL
;
ENTITY
ddr3
IS
GENERIC
(
...
...
@@ -99,9 +100,9 @@ ENTITY ddr3 IS
ser_term_ctrl_in
:
IN
STD_LOGIC_VECTOR
(
13
DOWNTO
0
)
:
=
(
OTHERS
=>
'0'
);
par_term_ctrl_in
:
IN
STD_LOGIC_VECTOR
(
13
DOWNTO
0
)
:
=
(
OTHERS
=>
'0'
);
phy_in
:
IN
t_ddr3_phy_in
;
phy_io
:
INOUT
t_ddr3_phy_io
;
phy_ou
:
OUT
t_ddr3_phy_ou
phy_in
:
IN
t_
tech_
ddr3_phy_in
;
phy_io
:
INOUT
t_
tech_
ddr3_phy_io
;
phy_ou
:
OUT
t_
tech_
ddr3_phy_ou
);
END
ddr3
;
...
...
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