Processes | |
ctp_set | ( CLK , RESET ) |
setting outputs |
This entity provides an interface to the ATLAS CTP to which we provide 9 bits of input information per LHC bunch. It also provides the possibility of setting the output to a particular value.
Definition at line 51 of file ctp_comm.vhd.
ctp_set | ( CLK , | |
RESET ) |
setting outputs
Definition at line 56 of file ctp_comm.vhd.
00056 ctp_set : process (CLK, RESET) 00057 begin -- process ctp_set 00058 if RESET = '1' then -- asynchronous reset (active high) 00059 CTP_OUT <= (others => '0'); 00060 elsif CLK'event and CLK = '1' then -- rising clock edge 00061 if SET_EN = '1' then 00062 CTP_OUT <= SET_VAL; 00063 end if; 00064 end if; 00065 end process ctp_set;