blob: 325f7f078b17df3e3bff2008c7a3d1c5b6296879 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity hello is
port (clk, rst: std_logic;
cnt : out unsigned(3 downto 0));
end hello;
architecture behav of hello is
signal val : unsigned (3 downto 0);
begin
process(clk)
begin
if rising_edge(clk) then
if rst = '1' then
val <= (others => '0');
else
val <= val + 1;
end if;
end if;
end process;
cnt <= val;
--psl default clock is rising_edge(clk);
--psl restrict {rst; (not rst)[*]};
--psl assert always val /= 5 abort rst;
--psl assume always val < 10;
--psl cover {val = 10};
end behav;
|