We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c1f4b1 commit c48ea0fCopy full SHA for c48ea0f
psl_endpoint_eval_in_vhdl/psl_endpoint_eval_in_vhdl.vhd
@@ -19,6 +19,7 @@ architecture test of psl_endpoint_eval_in_vhdl is
19
signal s_clk : std_logic := '0';
20
signal s_write : std_logic;
21
signal s_read : std_logic;
22
+ signal s_test0 : boolean;
23
24
25
begin
@@ -59,4 +60,15 @@ begin
59
60
end process;
61
62
-end architecture test;
63
+ process is
64
+ begin
65
+ wait until rising_edge(s_clk);
66
+ if (E_TEST0) then
67
+ s_test0 <= true;
68
+ else
69
+ s_test0 <= false;
70
+ end if;
71
+ end process;
72
+
73
74
+end architecture test;
0 commit comments