我正在嘗試創建一個減少長度的std_logic_vectors數組。我試圖用通用的std_logic_vector創建一個數組,然後使用generate語句來創建向量。 architecture behavioral of dadda_mul_32bit is
type and_planes is array (0 to 31) of std_logic_vector;
begin
我已經瞭解到,當S和R在它們在下面的電路VHDL代碼中僅爲'1'時均爲'0'時,SR鎖存器會發生振盪。 這裏是SRLATCH library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
entity SRLATCH_VHDL is
port(
S : in STD_LOGIC;
R : in STD_LOGIC;
Q : inou