Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
KnightMCU
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
David Lanzendörfer
KnightMCU
Commits
7feae8c2
Commit
7feae8c2
authored
1 year ago
by
David Lanzendörfer
Browse files
Options
Downloads
Patches
Plain Diff
Hook up debug LEDs
parent
92bd28c3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
verilog/src/chatgpt/AI_Accelerator_Top.v
+9
-1
9 additions, 1 deletion
verilog/src/chatgpt/AI_Accelerator_Top.v
with
9 additions
and
1 deletion
verilog/src/chatgpt/AI_Accelerator_Top.v
+
9
−
1
View file @
7feae8c2
...
...
@@ -26,7 +26,15 @@ module AI_Accelerator_Top #(
output
wire
[
15
:
0
]
io_out
,
// Debug LEDs pin [15:8]
output
wire
[
15
:
0
]
io_oeb
);
// Logic Analyzer
wire
rst
;
assign
la_data_out
=
{{
(
127
-
64
)
{
1'b0
}}
,
sram_data_i
,
sram_data_o
}
;
assign
rst
=
(
~
la_oenb
[
65
])
?
la_data_in
[
65
]
:
wb_rst_i
;
// IO
assign
io_out
=
{
operation
[
1
:
0
],
{
(
15
-
2
)
{
1'b0
}}}
;
assign
io_oeb
=
{
(
15
)
{
rst
}}
;
// Parallelism
reg
[
31
:
0
]
p
;
...
...
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