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
394676c8
Commit
394676c8
authored
Aug 13, 2020
by
Michael Munch
Browse files
core_arb forwards std_logic with or
parent
6bcb1439
Pipeline
#25548
failed with stage
in 9 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/vme_core_arb.vhd
View file @
394676c8
...
...
@@ -90,11 +90,13 @@ architecture rtl of vme_core_arb is
signal
core_1
:
boolean
:
=
true
;
begin
cli_busy
<=
vc1_busy
when
core_1
else
vc2_busy
;
-- cli_busy <= '1' when vc1_busy = '1' or vc2_busy = '1' else '0';
cli_busy
<=
vc1_busy
or
vc2_busy
;
cli_int_data_strobe
<=
vc1_int_go_consumed_strobe
or
vc2_int_go_consumed_strobe
;
cli_int_blt_decision_strobe
<=
vc1_int_blt_decision_strobe
or
vc2_int_blt_decision_strobe
;
cli_int_go_consumed_strobe
<=
vc1_int_go_consumed_strobe
or
vc2_int_go_consumed_strobe
;
cli_int_data_o
<=
vc1_int_data_o
when
core_1
else
vc2_int_data_o
;
cli_int_data_strobe
<=
vc1_int_data_strobe
when
core_1
else
vc2_int_data_strobe
;
cli_int_go_consumed_strobe
<=
vc1_int_go_consumed_strobe
when
core_1
else
vc2_int_go_consumed_strobe
;
cli_int_blt_decision_strobe
<=
vc1_int_blt_decision_strobe
when
core_1
else
vc2_int_blt_decision_strobe
;
cli_int_err_code
<=
vc1_int_err_code
when
core_1
else
vc2_int_err_code
;
vc1_int_addr
<=
cli_int_addr
;
...
...
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