Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
Hydra - a radiation-tolerant SoC
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Hydra - a radiation-tolerant SoC
Commits
c3f3ee6d
Commit
c3f3ee6d
authored
3 years ago
by
Tristan Gingold
Browse files
Options
Downloads
Patches
Plain Diff
Renaming of hydra_ram
parent
0372a11b
Branches
Branches containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
hdl/rtl/Manifest.py
+1
-1
1 addition, 1 deletion
hdl/rtl/Manifest.py
hdl/rtl/hydra_core.vhd
+1
-1
1 addition, 1 deletion
hdl/rtl/hydra_core.vhd
hdl/rtl/hydra_iram.vhd
+3
-3
3 additions, 3 deletions
hdl/rtl/hydra_iram.vhd
with
5 additions
and
5 deletions
hdl/rtl/Manifest.py
+
1
−
1
View file @
c3f3ee6d
files
=
[
'
hydra_core.vhd
'
]
files
=
[
'
hydra_core.vhd
'
,
'
hydra_iram.vhd
'
,
'
hydra_dram.vhd
'
]
This diff is collapsed.
Click to expand it.
hdl/rtl/hydra_core.vhd
+
1
−
1
View file @
c3f3ee6d
...
...
@@ -158,7 +158,7 @@ begin
im1_dm_en
<=
'1'
when
reg_dm_load
=
'1'
and
reg_dm_is_wishbone
=
'0'
and
reg_dm_addr
(
16
)
=
'0'
else
'0'
;
inst_
ro
m
:
entity
work
.
hydra_ram
inst_
ira
m
:
entity
work
.
hydra_
i
ram
generic
map
(
g_RAM_LOG_SIZE
=>
g_IRAM_LOG_SIZE
)
...
...
This diff is collapsed.
Click to expand it.
hdl/rtl/hydra_ram.vhd
→
hdl/rtl/hydra_
i
ram.vhd
+
3
−
3
View file @
c3f3ee6d
...
...
@@ -29,7 +29,7 @@ use ieee.numeric_std.all;
use
work
.
secded_32b_pkg
.
all
;
entity
hydra_ram
is
entity
hydra_
i
ram
is
generic
(
g_RAM_LOG_SIZE
:
natural
:
=
12
);
-- In bytes
port
(
...
...
@@ -68,9 +68,9 @@ entity hydra_ram is
-- Scrubber
scrubber_period_i
:
in
std_logic_vector
(
15
downto
0
)
);
end
hydra_ram
;
end
hydra_
i
ram
;
architecture
arch
of
hydra_ram
is
architecture
arch
of
hydra_
i
ram
is
constant
RAM_WSIZE
:
natural
:
=
2
**
(
g_RAM_LOG_SIZE
-
2
);
type
t_ram39_type
is
array
(
natural
range
<>
)
of
std_logic_vector
(
38
downto
0
);
...
...
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