✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Az alábbi programrésznek melyik RTL megoldás felel meg:
entity pelda_1 is
Port (src_clk: in std_logic;
d : in std_logic;
q : out std_logic);
end pelda_1;
architecture Behavioral of pelda_1 is
begin
process (src_clk)
begin
if src_clk'event and src_clk='0' then
q <= d;
end if;
end process;
end Behavioral;