You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
entity test is
port (
clock
);
end entity;
architecture arch of test is
signal processing: std_logic;
begin
test: process(clock)
begin
if processing = '0' then
processing <= '1';
end if;
end process test;
end architecture;
The text was updated successfully, but these errors were encountered: