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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SoCLabs
ASIC Library Tech
Compare revisions
ce05d1a53ea1478b1b11be15053e3b4e02f9ddb1 to ddda4a64c07b133b6d60c539ac403fb6644bb55f
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
soclabs/asic_library_tech
Select target project
No results found
ddda4a64c07b133b6d60c539ac403fb6644bb55f
Select Git revision
Swap
Target
soclabs/asic_library_tech
Select target project
soclabs/asic_library_tech
1 result
ce05d1a53ea1478b1b11be15053e3b4e02f9ddb1
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
Fix clock connection
· 3f50e0f6
Daniel Newbrook
authored
1 year ago
3f50e0f6
Fix TSMC rom_via EMA tie off
· 67997881
dwn1c21
authored
1 year ago
67997881
Fix bootrom enable active level
· ddda4a64
Daniel Newbrook
authored
1 year ago
ddda4a64
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
rom/verilog/bootrom.v
+3
-3
3 additions, 3 deletions
rom/verilog/bootrom.v
sram/verilog/sl_sram.v
+2
-2
2 additions, 2 deletions
sram/verilog/sl_sram.v
with
5 additions
and
5 deletions
rom/verilog/bootrom.v
View file @
ddda4a64
...
...
@@ -31,9 +31,9 @@ module bootrom #(
`endif
.
Q
(
RDATA
),
.
CLK
(
CLK
),
.
CEN
(
EN
),
.
CEN
(
!
EN
),
.
A
(
W_ADDR
),
.
EMA
(
3'b0
0
0
),
.
EMA
(
3'b0
1
0
),
.
TEN
(
1'b1
),
.
BEN
(
1'b1
),
.
TCEN
(
1'b0
),
...
...
@@ -43,4 +43,4 @@ module bootrom #(
.
KEN
(
1'b1
)
);
endmodule
\ No newline at end of file
endmodule
This diff is collapsed.
Click to expand it.
sram/verilog/sl_sram.v
View file @
ddda4a64
...
...
@@ -53,7 +53,7 @@ generate
.
VSS
(
VSS
),
`endif
.
Q
(
RDATA32
),
.
CLK
(
H
CLK
),
.
CLK
(
CLK
),
.
CEN
(
CEN
),
.
WEN
(
WEN32
),
.
A
(
ADDR12
),
...
...
@@ -73,7 +73,7 @@ generate
.
VSS
(
VSS
),
`endif
.
Q
(
RDATA32
),
.
CLK
(
H
CLK
),
.
CLK
(
CLK
),
.
CEN
(
CEN
),
.
WEN
(
WEN32
),
.
A
(
ADDR12
),
...
...
This diff is collapsed.
Click to expand it.