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
Compare revisions
31eb5b5c443d5a57b3d5ce1ab7b229b600e3378c to 5cf5a948717abfdfb616ce61da34a03209e309a1
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
ele8304/lab2
Select target project
No results found
5cf5a948717abfdfb616ce61da34a03209e309a1
Select Git revision
Swap
Target
ele8304/lab2
Select target project
ele8304/lab2
1 result
31eb5b5c443d5a57b3d5ce1ab7b229b600e3378c
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Added riscv_core top level file containing only the interface.
· 5fced061
rrpsid_git
authored
5 months ago
5fced061
Merge branch 'master' of
https://git.step.polymtl.ca/ele8304/lab2
· 5cf5a948
rrpsid_git
authored
5 months ago
5cf5a948
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
View file @
5cf5a948
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.