Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
ASIC Library Tech
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SoCLabs
ASIC Library Tech
Commits
0977f3e9
Commit
0977f3e9
authored
1 month ago
by
Daniel Newbrook
Browse files
Options
Downloads
Patches
Plain Diff
Update TSMC 28nm bootrom
parent
3a1d7ce2
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
flist/asic_lib_ip_TSMC28nm.flist
+1
-1
1 addition, 1 deletion
flist/asic_lib_ip_TSMC28nm.flist
rom/TSMC28nm/verilog/bootrom.v
+46
-0
46 additions, 0 deletions
rom/TSMC28nm/verilog/bootrom.v
with
47 additions
and
1 deletion
flist/asic_lib_ip_TSMC28nm.flist
+
1
−
1
View file @
0977f3e9
...
...
@@ -21,6 +21,6 @@
// - Memories
$(SOCLABS_ASIC_LIB_TECH_DIR)/sram/verilog/sl_ahb_sram.v
$(SOCLABS_ASIC_LIB_TECH_DIR)/sram/TSMC28nm/verilog/sl_sram.v
$(SOCLABS_ASIC_LIB_TECH_DIR)/rom/verilog/bootrom.v
$(SOCLABS_ASIC_LIB_TECH_DIR)/rom/
TSMC28nm/
verilog/bootrom.v
$(SOCLABS_ASIC_LIB_TECH_DIR)/sync/verilog/SYNCHRONIZER_EDGES.v
\ No newline at end of file
This diff is collapsed.
Click to expand it.
rom/TSMC28nm/verilog/bootrom.v
0 → 100644
+
46
−
0
View file @
0977f3e9
//-----------------------------------------------------------------------------
// SoCLabs ASIC ROM Wrapper
// - substituded using the same name from the FPGA tech library
// A joint work commissioned on behalf of SoC Labs, under Arm Academic Access license.
//
// Contributors
//
// Daniel Newbrook (d.newbrook@soton.ac.uk)
//
// Copyright 2021-3, SoC Labs (www.soclabs.org)
//-----------------------------------------------------------------------------
module
bootrom
#(
parameter
AW_ADDR_W
=
8
)(
`ifdef
POWER_PINS
inout
VDD
,
inout
VSS
,
`endif
input
wire
CLK
,
input
wire
EN
,
input
wire
[
7
:
0
]
W_ADDR
,
output
reg
[
31
:
0
]
RDATA
);
rom_via
u_sl_rom
(
`ifdef
POWER_PINS
.
VDD
(
VDD
),
.
VSSE
(
VSS
),
`endif
.
Q
(
RDATA
),
.
CLK
(
CLK
),
.
CEN
(
!
EN
),
.
A
(
W_ADDR
),
.
EMA
(
3'b010
),
.
TEN
(
1'b1
),
.
BEN
(
1'b1
),
.
TCEN
(
1'b0
),
.
TA
(
8'b0
),
.
TQ
(
32'b0
),
.
PGEN
(
1'b0
),
.
KEN
(
1'b1
)
);
endmodule
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