Вот примерчик из Speccy2007, чтобы понять как работает чувствительность
PS: т.е. триггер срабатывает по событию, в данном случае это rising edge у CLKКод:process( CLK )
begin
if CLK'event and CLK = '1' then
if Tick = '1' then
if paper_r = '0' and Attr_r(6) = '1' then
RY <= 'Z';
GY <= 'Z';
BY <= 'Z';
else
RY <= '0';
GY <= '0';
BY <= '0';
end if;
end if;
end if;
end process;

