falling_edge
functionfunction falling_edge ( signal s : std_ulogic ) return boolean;
Detects the falling edge of a std_ulogic
or std_logic
signal. It will return true when the signal changes from a high value ('1'
or 'H'
) to a low value ('0'
or 'L'
).
See the example for rising_edge
.