ฉันจะนำสัญญาณภายในของซอร์สโค้ด VHDL ของฉันไปที่ testbench ของฉันเพื่อให้สามารถดูพวกเขาเป็นรูปคลื่นได้อย่างไร ฉันใช้ Active HDL ฉันต้องการทราบว่ามีวิธีการที่เป็นอิสระจากเครื่องมือใด ๆ ในการบรรลุวัตถุประสงค์หรือไม่ ความช่วยเหลือใด ๆ ที่ชื่นชม
ฉันได้รับข้อผิดพลาดนี้แล้ว
รหัสที่มาของฉันคือ
entity SPI_DAC is
Port (
-- inputs and oututs
)
end SPI_DAC;
architecture Behavioral of SPI_DAC is
--These are my internal signals
signal ch1_byte_data_sent : STD_LOGIC_VECTOR(23 downto 0) := x"000000";
signal ch1_byte_cmd_sent : STD_LOGIC_VECTOR(23 downto 0) := x"000000";
--and a few other signals
begin
--functionality
end Behavioral;
รหัส testbench ของฉันคือ
entity tb_spi_dac is
end tb_spi_dac;
architecture behavioral of tb_spi_dac is
component spi_dac
port(
--declaration, inputs and outputs
);
end component;
begin
uut: spi_dac port map(
--map ports
);
--stimulus process
end;
.tp_spi_dac.uut.ch1_byte_data_sent
เส้นทางที่ถูกต้องควรจะเป็น