|
|
@ -0,0 +1,37 @@ |
|
|
|
library ieee; |
|
|
|
use ieee.std_logic_1164.all; |
|
|
|
|
|
|
|
use work.pkg.all; |
|
|
|
|
|
|
|
|
|
|
|
entity psl_sere_within is |
|
|
|
port ( |
|
|
|
clk : in std_logic |
|
|
|
); |
|
|
|
end entity psl_sere_within; |
|
|
|
|
|
|
|
|
|
|
|
architecture psl of psl_sere_within is |
|
|
|
|
|
|
|
signal req, busy, valid, done : std_logic; |
|
|
|
|
|
|
|
begin |
|
|
|
|
|
|
|
|
|
|
|
-- 0123456789 |
|
|
|
SEQ_REQ : sequencer generic map ("_-________") port map (clk, req); |
|
|
|
SEQ_BUSY : sequencer generic map ("__------__") port map (clk, busy); |
|
|
|
SEQ_VALID : sequencer generic map ("___-_-_-__") port map (clk, valid); |
|
|
|
SEQ_DONE : sequencer generic map ("________-_") port map (clk, done); |
|
|
|
|
|
|
|
|
|
|
|
-- All is sensitive to rising edge of clk |
|
|
|
default clock is rising_edge(clk); |
|
|
|
|
|
|
|
-- Occurrance of a SERE during another SERE |
|
|
|
-- valid has to hold 3 times during busy holds and done does't hold |
|
|
|
-- This assertion doesn't hold at cycle 3 |
|
|
|
SERE_0_a : assert always {req} |=> {{valid[=3]} within {(busy and not done)[+]}; not busy and done}; |
|
|
|
|
|
|
|
|
|
|
|
end architecture psl; |