Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
urv-core
Manage
Activity
Members
Labels
Plan
Issues
4
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
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
Projects
urv-core
Commits
c701e7ca
Commit
c701e7ca
authored
7 years ago
by
Tristan Gingold
Browse files
Options
Downloads
Patches
Plain Diff
Minor clean-up.
parent
44d69a62
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!1
Release v1.1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
rtl/urv_cpu.v
+0
-1
0 additions, 1 deletion
rtl/urv_cpu.v
rtl/urv_fetch.v
+2
-3
2 additions, 3 deletions
rtl/urv_fetch.v
with
2 additions
and
4 deletions
rtl/urv_cpu.v
+
0
−
1
View file @
c701e7ca
...
...
@@ -95,7 +95,6 @@ module urv_cpu
// F->D stage interface
wire
[
31
:
0
]
f2d_pc
,
f2d_ir
;
wire
f2d_ir_valid
;
wire
f2d_valid
;
// D->RF interface
...
...
This diff is collapsed.
Click to expand it.
rtl/urv_fetch.v
+
2
−
3
View file @
c701e7ca
...
...
@@ -115,17 +115,16 @@ module urv_fetch
end
else
if
(
dbg_mode
)
begin
// Default: insn not valid
f_valid_o
<=
0
;
if
(
x_dbg_toggle
)
begin
// Leave debug mode immediately.
dbg_mode
<=
0
;
f_valid_o
<=
0
;
// pipeline_cnt must be 0.
end
else
begin
// Use instruction from the debug port.
f_ir_o
<=
dbg_insn_i
;
f_valid_o
<=
1
;
end
...
...
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