blob: 52522c7b72e4b058fe55b83a84024c028e2eef84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
library ieee;
use ieee.std_logic_1164.all;
entity top3 is
end entity;
architecture a of top3 is
signal a,b,c,d : std_logic := '0';
signal clk_sys, clk1, clk2 : std_logic;
begin
-- psl default clock is clk_sys;
-- Following error is thrown: "translate_psl_expr: cannot handle N_IMP_BOOL"
-- Combination of "never" + implication is not very usefull, since
-- implication is always true apart from case where 1 -> 0, therefore it
-- will mostly fail, however, it should not crash tool (the same goes for
-- previous case too)
-- psl my_seq : assert never (a -> b);
end;
|