Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
super6502
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Show more breadcrumbs
Byron Lathi
super6502
Merge requests
!33
Resolve "Increase CPU Speed"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Increase CPU Speed"
38-increase-cpu-speed
into
master
Overview
0
Commits
6
Pipelines
7
Changes
13
Merged
Byron Lathi
requested to merge
38-increase-cpu-speed
into
master
1 year ago
Overview
0
Commits
6
Pipelines
7
Changes
2
Expand
Closes
#38 (closed)
0
0
Merge request reports
Compare
version 4
version 5
362c9f14
1 year ago
version 4
e0e20d7f
1 year ago
version 3
4372e960
1 year ago
version 2
32f6c0f8
1 year ago
version 1
afd8de92
1 year ago
master (base)
and
version 5
latest version
e768b245
6 commits,
1 year ago
version 5
362c9f14
5 commits,
1 year ago
version 4
e0e20d7f
4 commits,
1 year ago
version 3
4372e960
4 commits,
1 year ago
version 2
32f6c0f8
3 commits,
1 year ago
version 1
afd8de92
2 commits,
1 year ago
Show latest version
2 files
+
93
−
86
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
hw/efinix_fpga/src/sdram_adapter.sv
+
9
−
3
Options
@@ -86,6 +86,7 @@ logic [31:0] r_write_data;
logic
[
1
:
0
]
counter
,
next_counter
;
logic
[
7
:
0
]
o_data_next
;
logic
r_wait
;
logic
_
r_wait
;
@@ -122,9 +123,8 @@ always @(posedge i_sysclk or posedge i_arst) begin
r_addr
<=
w_addr
;
r_dm
<=
w_dm
;
end
if
(
w_data_valid
)
o_data
<=
_
data
;
o_data
<=
o_data_next
;
end
//because of timing issues, We really need to trigger
@@ -167,6 +167,12 @@ always_comb begin
w_data_i
=
'0
;
w_data_valid
=
'0
;
_
data
=
0
;
if
(
w_data_valid
)
begin
o_data_next
=
_
data
;
end
else
begin
o_data_next
=
o_data
;
end
unique
case
(
state
)
WAIT:
begin
Loading