✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Skaitiklio CNT_1 modulis yra 14, o CNT_2 - 10. Koks yra jungtinio skaitiklio modulis, jei žemiau pateiktame VHDL kode yra aprašytas jiems generuojamas rst_internal signalas?process (CLK_I, RST_I) begin if (RST_I = '1') then RST_internal <= '1'; elsif CLK_I'event and CLK_I = '1' then if ((CNT_2_O(2) = '1') and (CNT_2_O(1) = '1') and (CNT_1_O(3) = '1') and (CNT_1_O(0) = '1')) then RST_internal <= '1'; CNT_CO <= '1'; else RST_internal <= '0'; CNT_CO <= '0'; end if; end if; end process;