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
9118020e
Commit
9118020e
authored
Oct 15, 2020
by
Michael Munch
Browse files
core_arb forward data/err according to data strobes
parent
2f29adb2
Pipeline
#34743
failed with stage
in 34 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/vme_core_arb.vhd
View file @
9118020e
...
@@ -155,8 +155,8 @@ begin
...
@@ -155,8 +155,8 @@ begin
else
'0'
;
else
'0'
;
-- Forward data and err from the busy core
-- Forward data and err from the busy core
cli_int_data_read
<=
vc1_int_data_read
when
vc1_
busy
=
'1'
else
vc2_int_data_read
;
cli_int_data_read
<=
vc1_int_data_read
when
vc1_
int_data_strobe
=
'1'
else
vc2_int_data_read
;
cli_int_err_code
<=
vc1_int_err_code
when
vc1_
busy
=
'1'
else
vc2_int_err_code
;
cli_int_err_code
<=
vc1_int_err_code
when
vc1_
int_data_strobe
=
'1'
else
vc2_int_err_code
;
end
architecture
;
end
architecture
;
...
...
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