Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Rimfaxe
vme_core
Commits
836488c9
Commit
836488c9
authored
Apr 16, 2020
by
Michael Munch
Browse files
Early busy release breaks AXI bridge
parent
54d8c5da
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/vme_cli_arb.vhd
View file @
836488c9
...
...
@@ -232,9 +232,12 @@ begin
-- The busy of a client is simply while it is live.
-- This actually means that we will report busy some cycles
-- early. (But the clients are not likely to use this signal...)
p1_busy
<=
'1'
when
live_1
else
'0'
;
p2_busy
<=
'1'
when
live_2
else
'0'
;
--
p1_busy <= '1' when live_1 else '0';
--
p2_busy <= '1' when live_2 else '0';
p1_busy
<=
'1'
when
active_1
else
'0'
;
p2_busy
<=
'1'
when
active_2
else
'0'
;
FormalG
:
if
Formal
generate
-- VHDL helper vars
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment