Examples of using PSL for functional and formal verification of VHDL with GHDL (and SymbiYosys)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

57 lines
1.2 KiB

library ieee;
use ieee.std_logic_1164.all;
use work.pkg.all;
entity psl_fell is
port (
clk : in std_logic
);
end entity psl_fell;
architecture psl of psl_fell is
signal a, b : std_logic;
begin
-- 01234567890
SEQ_A : sequencer generic map ("_-__-_---__") port map (clk, a);
SEQ_B : sequencer generic map ("__-__-___-_") port map (clk, b);
-- All is sensitive to rising edge of clk
default clock is rising_edge(clk);
-- This assertion holds
FELL_0_a : assert always (fell(a) -> b);
-- Workaround needed before fell() is implemented
-- With VHDL glue logic generating the
-- previous value of a and simple comparing the two values
d_reg : block is
signal a_prev : std_logic := '0';
begin
process (clk) is
begin
if rising_edge(clk) then
a_prev <= a;
end if;
end process;
FELL_1_a : assert always (not a and a_prev -> b);
end block d_reg;
-- Another workaround by using simple SERE concatenation on LHS
FELL_2_a : assert always {a; not a} |-> b;
-- Stop simulation after longest running sequencer is finished
-- Simulation only code by using pragmas
-- synthesis translate_off
stop_sim(clk, 11);
-- synthesis translate_on
end architecture psl;