Processes | |
abort_set | ( CLK , RESET ) |
setting abort | |
warn_set | ( CLK , RESET ) |
setting warning |
Definition at line 51 of file dss_comm.vhd.
abort_set | ( CLK , | |
RESET ) |
setting abort
Definition at line 56 of file dss_comm.vhd.
00056 abort_set : process (CLK, RESET) 00057 begin -- process ctp_set 00058 if RESET = '1' then -- asynchronous reset (active high) 00059 DSS_ABORT_1 <= '0'; 00060 DSS_ABORT_2 <= '0'; 00061 elsif CLK'event and CLK = '1' then -- rising clock edge 00062 if SET_EN(1) = '1' then 00063 DSS_ABORT_1 <= SET(1); 00064 DSS_ABORT_2 <= SET(1); 00065 end if; 00066 end if; 00067 end process abort_set;
warn_set | ( CLK , | |
RESET ) |
setting warning
Definition at line 70 of file dss_comm.vhd.
00070 warn_set : process (CLK, RESET) 00071 begin -- process ctp_set 00072 if RESET = '1' then -- asynchronous reset (active high) 00073 DSS_WARNING_1 <= '0'; 00074 DSS_WARNING_2 <= '0'; 00075 elsif CLK'event and CLK = '1' then -- rising clock edge 00076 if SET_EN(0) = '1' then 00077 DSS_WARNING_1 <= SET(0); 00078 DSS_WARNING_2 <= SET(0); 00079 end if; 00080 end if; 00081 end process warn_set;