Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
NanoSoC Tech
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
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
SoCLabs
NanoSoC Tech
Compare revisions
f783f487ed325318df5c9cda0c302f21f158f749 to a055cc846832539d9f731ceed9d5c38782d76800
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
soclabs/nanosoc_tech
Select target project
No results found
a055cc846832539d9f731ceed9d5c38782d76800
Select Git revision
Swap
Target
soclabs/nanosoc_tech
Select target project
soclabs/nanosoc_tech
1 result
f783f487ed325318df5c9cda0c302f21f158f749
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
Add support for ADP Program load in simulation
· a055cc84
Daniel Newbrook
authored
11 months ago
a055cc84
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
makefile
+7
-0
7 additions, 0 deletions
makefile
verif/tb/verilog/nanosoc_tb.v
+8
-1
8 additions, 1 deletion
verif/tb/verilog/nanosoc_tb.v
with
15 additions
and
1 deletion
makefile
View file @
a055cc84
...
@@ -27,6 +27,8 @@ QUICKSTART ?= no
...
@@ -27,6 +27,8 @@ QUICKSTART ?= no
ASIC
?=
no
ASIC
?=
no
FAST_SIM
?=
yes
#-------------------------------------
#-------------------------------------
# - Directory Setups
# - Directory Setups
#-------------------------------------
#-------------------------------------
...
@@ -65,6 +67,11 @@ ifeq ($(ACCELERATOR),yes)
...
@@ -65,6 +67,11 @@ ifeq ($(ACCELERATOR),yes)
NANOSOC_DEFINES
+=
ACCELERATOR_SUBSYSTEM
NANOSOC_DEFINES
+=
ACCELERATOR_SUBSYSTEM
endif
endif
ifeq
($(FAST_SIM),yes)
DEFINES_VC
+=
+define+FAST_SIM
NANOSOC_DEFINES
+=
FAST_SIM
endif
# System Design Filelist
# System Design Filelist
ifeq
($(QUICKSTART),yes)
ifeq
($(QUICKSTART),yes)
DESIGN_VC
?=
$(
SOCLABS_PROJECT_DIR
)
/flist/project/top_qs.flist
DESIGN_VC
?=
$(
SOCLABS_PROJECT_DIR
)
/flist/project/top_qs.flist
...
...
This diff is collapsed.
Click to expand it.
verif/tb/verilog/nanosoc_tb.v
View file @
a055cc84
...
@@ -319,9 +319,16 @@ reg baud_clk_del;
...
@@ -319,9 +319,16 @@ reg baud_clk_del;
wire
rxd8_tvalid
;
wire
rxd8_tvalid
;
wire
[
7
:
0
]
rxd8_tdata
;
wire
[
7
:
0
]
rxd8_tdata
;
`ifdef
FAST_SIM
parameter
FAST_LOAD
=
1
;
`else
parameter
FAST_LOAD
=
0
;
`endif
`ifndef
COCOTB_SIM
`ifndef
COCOTB_SIM
nanosoc_axi_stream_io_8_txd_from_file
#(
nanosoc_axi_stream_io_8_txd_from_file
#(
.
TXDFILENAME
(
ADP_FILENAME
)
.
TXDFILENAME
(
ADP_FILENAME
),
.
FAST_LOAD
(
FAST_LOAD
)
)
u_nanosoc_axi_stream_io_8_txd_from_file
(
)
u_nanosoc_axi_stream_io_8_txd_from_file
(
.
aclk
(
CLK
),
.
aclk
(
CLK
),
.
aresetn
(
NRST
),
.
aresetn
(
NRST
),
...
...
This diff is collapsed.
Click to expand it.