Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
ARM_SoC
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
ks6n19
ARM_SoC
Commits
00fdc59a
Commit
00fdc59a
authored
4 years ago
by
ks6n19
Browse files
Options
Downloads
Patches
Plain Diff
removed datavalid
parent
0eec49fb
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
behavioural/ahb_out.sv
+0
-2
0 additions, 2 deletions
behavioural/ahb_out.sv
behavioural/arm_soc.sv
+1
-3
1 addition, 3 deletions
behavioural/arm_soc.sv
testbench/arm_soc.tcl
+0
-1
0 additions, 1 deletion
testbench/arm_soc.tcl
testbench/arm_soc_stim.sv
+1
-2
1 addition, 2 deletions
testbench/arm_soc_stim.sv
with
2 additions
and
8 deletions
behavioural/ahb_out.sv
+
0
−
2
View file @
00fdc59a
...
...
@@ -47,8 +47,6 @@ module ahb_out(
//Non-AHB Signals
output
logic
[
8
:
0
]
x1
,
x2
,
y1
,
y2
,
output
logic
DataValid
);
timeunit
1
ns
;
...
...
This diff is collapsed.
Click to expand it.
behavioural/arm_soc.sv
+
1
−
3
View file @
00fdc59a
// Example code for an M0 AHBLite System
// Iain McNally
// ECS, University of Soutampton
module
arm_soc
(
input
HCLK
,
HRESETn
,
...
...
@@ -9,7 +8,6 @@ module arm_soc(
input
[
15
:
0
]
Switches
,
input
[
1
:
0
]
Buttons
,
output
logic
[
8
:
0
]
x1
,
x2
,
y1
,
y2
,
output
DataValid
,
output
LOCKUP
);
...
...
@@ -94,7 +92,7 @@ timeprecision 100ps;
.
HSEL
(
HSEL_DOUT
),
.
HRDATA
(
HRDATA_DOUT
),
.
HREADYOUT
(
HREADYOUT_DOUT
),
.
x1
(
x1
),
.
x2
(
x2
),
.
y1
(
y1
),
.
y2
(
y2
)
,
.
DataValid
(
DataValid
)
.
x1
(
x1
),
.
x2
(
x2
),
.
y1
(
y1
),
.
y2
(
y2
)
);
...
...
This diff is collapsed.
Click to expand it.
testbench/arm_soc.tcl
+
0
−
1
View file @
00fdc59a
...
...
@@ -17,7 +17,6 @@ simvision {
waveform add -signals arm_soc_stim.x2
waveform add -signals arm_soc_stim.y1
waveform add -signals arm_soc_stim.y2
waveform add -signals arm_soc_stim.DataValid
waveform add -signals arm_soc_stim.LOCKUP
waveform add -signals arm_soc_stim.dut.HADDR
waveform add -signals arm_soc_stim.dut.HWRITE
...
...
This diff is collapsed.
Click to expand it.
testbench/arm_soc_stim.sv
+
1
−
2
View file @
00fdc59a
...
...
@@ -7,10 +7,9 @@ timeprecision 100ps;
logic
[
15
:
0
]
Switches
;
logic
[
1
:
0
]
Buttons
;
logic
[
8
:
0
]
x1
,
x2
,
y1
,
y2
;
wire
DataValid
;
wire
LOCKUP
;
arm_soc
dut
(.
HCLK
,
.
HRESETn
,
.
x1
,
.
y1
,
.
x2
,
.
y2
,
.
DataValid
,
.
Switches
,
.
Buttons
,
.
LOCKUP
);
arm_soc
dut
(.
HCLK
,
.
HRESETn
,
.
x1
,
.
y1
,
.
x2
,
.
y2
,
.
Switches
,
.
Buttons
,
.
LOCKUP
);
always
begin
...
...
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