Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
Lab2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
ELE8304
Lab2
Commits
5fced061
Commit
5fced061
authored
5 months ago
by
rrpsid_git
Browse files
Options
Downloads
Patches
Plain Diff
Added riscv_core top level file containing only the interface.
parent
93f47bfe
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sources/riscv_core.vhd
+24
-0
24 additions, 0 deletions
sources/riscv_core.vhd
with
24 additions
and
0 deletions
sources/riscv_core.vhd
0 → 100644
+
24
−
0
View file @
5fced061
library
work
;
use
work
.
riscv_pkg
.
all
;
entity
riscv_core
is
port
(
i_rstn
:
in
std_logic
;
i_clk
:
in
std_logic
;
o_imem_en
:
out
std_logic
;
o_imem_addr
:
out
std_logic_vector
(
8
downto
0
);
i_imem_read
:
in
std_logic_vector
(
31
downto
0
);
o_dmem_en
:
out
std_logic
;
o_dmem_we
:
out
std_logic
;
o_dmem_addr
:
out
std_logic_vector
(
8
downto
0
);
i_dmem_read
:
in
std_logic_vector
(
31
downto
0
);
o_dmem_write
:
out
std_logic_vector
(
31
downto
0
);
-- DFT
i_scan_en
:
in
std_logic
;
i_test_mode
:
in
std_logic
;
i_tdi
:
in
std_logic
;
o_tdo
:
out
std_logic
);
end
entity
riscv_core
;
architecture
beh
of
riscv_core
is
end
architecture
beh
;
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