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
214f5552
Commit
214f5552
authored
Aug 27, 2020
by
Michael Munch
Browse files
cli_arb: Do not terminate live assignment early
parent
9a361e9a
Pipeline
#26414
failed with stage
in 24 seconds
Changes
1
Pipelines
2
Show whitespace changes
Inline
Side-by-side
src/vme_cli_arb.vhd
View file @
214f5552
...
...
@@ -147,8 +147,8 @@ begin
-- We kill the live assignment as soon as busy is removed.
-- (Not really needed.)
live_1
<=
(
active_1
and
vc_busy
=
'1'
)
or
start_1
;
live_2
<=
(
active_2
and
vc_busy
=
'1'
)
or
start_2
;
live_1
<=
(
active_1
)
or
start_1
;
live_2
<=
(
active_2
)
or
start_2
;
process
(
clk
)
begin
...
...
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