मैं अपने वीएचडीएल स्रोत कोड के आंतरिक संकेतों को अपने टेस्टबेंच में कैसे ला सकता हूं ताकि मैं उन्हें तरंग के रूप में देख सकूं? मैं सक्रिय एचडीएल का उपयोग करता हूं। मैं जानना चाहूंगा कि क्या मेरे उद्देश्य को प्राप्त करने के लिए कोई स्वतंत्र उपकरण है। किसी भी मदद की सराहना की है।
मुझे अब यह त्रुटि मिली।
मेरा सोर्स कोड है
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;
मेरा टेस्टबेंच कोड है
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
।