我想這個箴言報變量的狀態:有沒有辦法在ISim中顯示變量?
shared variable Div16 : integer := 0;
但我在ISIM recieving此錯誤:
ISIM尚不支持VHDL變量的跟蹤。
您可以將變量轉換爲testbench文件中的信號嗎?或者還有什麼其他的方式來顯示這個值作爲波形變化?
完整代碼:
entity MAIN_UART is
generic (
DIVISOR: natural := 120 -- DIVISOR = 50,000,000/(16 x BAUD_RATE)
-- 9600 -> 120
-- 19200 -> 60
);
port (
CLK: in std_logic; -- clock
RST: in std_logic -- reset
);
end MAIN_UART;
architecture Behavioral of MAIN_UART is
signal Top16: std_logic; -- 1 clk spike at 16x baud rate
shared variable Div16 : integer := 0;
-- constant COUNTER_BITS : natural := integer(ceil(log2(real(DIVISOR))));
begin
-- --------------------------
-- Clk16 Clock Generation
-- --------------------------
process (RST, CLK)
begin
if RST='1' then
Top16 <= '0'; --good
Div16 := 0;
elsif rising_edge(CLK) then
Top16 <= '0';
if Div16 = Divisor then
Div16 := 0;
Top16 <= '1'; --good
else
Div16 := Div16 + 1;
end if;
end if;
end process;
end Behavioral;
您應該在流程中聲明該變量,因此無需將其聲明爲共享。 – Paebbels