Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Platform-independent core collection
Manage
Activity
Members
Labels
Plan
Issues
15
Issue boards
Milestones
Wiki
Code
Merge requests
5
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
Platform-independent core collection
Commits
a9be15e6
There was an error fetching the commit references. Please try again later.
Commit
a9be15e6
authored
13 years ago
by
Tomasz Wlostowski
Browse files
Options
Downloads
Patches
Plain Diff
wishbone/wb_slave_adapter: checks stall line only in PIPELINED mode
parent
4e1e6fb5
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/wishbone/wb_slave_adapter/wb_slave_adapter.vhd
+1
-1
1 addition, 1 deletion
modules/wishbone/wb_slave_adapter/wb_slave_adapter.vhd
with
1 addition
and
1 deletion
modules/wishbone/wb_slave_adapter/wb_slave_adapter.vhd
+
1
−
1
View file @
a9be15e6
...
@@ -154,7 +154,7 @@ begin -- rtl
...
@@ -154,7 +154,7 @@ begin -- rtl
else
else
case
fsm_state
is
case
fsm_state
is
when
IDLE
=>
when
IDLE
=>
if
(
slave_in
.
stb
=
'1'
and
master_in
.
stall
=
'0'
and
master_in
.
ack
=
'0'
)
then
if
(
slave_in
.
stb
=
'1'
and
(
master_in
.
stall
=
'0'
or
g_master_mode
=
CLASSIC
)
and
master_in
.
ack
=
'0'
)
then
fsm_state
<=
WAIT4ACK
;
fsm_state
<=
WAIT4ACK
;
end
if
;
end
if
;
when
WAIT4ACK
=>
when
WAIT4ACK
=>
...
...
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