otsdaq_prepmodernization
v2_05_02_indev
Return to top level
Main Page
Classes
Files
File List
or33.vhd
1
-- Author: Ryan Rivera, FNAL
2
3
library
IEEE
;
4
use
IEEE.std_logic_1164.
all
;
5
use
IEEE.std_logic_arith.
all
;
6
use
IEEE.std_logic_unsigned.
all
;
7
8
entity
or33
is
9
port
(
10
a1
:
in
std_logic
;
11
b1
:
in
std_logic
;
12
c1
:
in
std_logic
;
13
a2
:
in
std_logic
;
14
b2
:
in
std_logic
;
15
c2
:
in
std_logic
;
16
17
18
19
20
ao
:
out
STD_LOGIC
;
21
bo
:
out
STD_LOGIC
;
22
co
:
out
STD_LOGIC
23
)
;
24
end
;
25
26
27
architecture
or33_arch
of
or33
is
28
begin
29
30
ao
<=
a1
or
a2
;
31
bo
<=
b1
or
b2
;
32
co
<=
c1
or
c2
;
33
34
end
or33_arch
;
or33
Definition:
or33.vhd:8
otsdaq_prepmodernization
firmware
g-2
KickerControllerFirmware
oei
or33.vhd
Generated on Wed Apr 29 2020 18:41:42 for otsdaq_prepmodernization by
1.8.5