-- Z:\CAMURATI\TESI -- VHDL Test Bench created by -- HDL Bencher 6.1i -- Fri Mar 23 10:26:34 2007 -- -- Notes: -- 1) This testbench has been automatically generated from -- your Test Bench Waveform -- 2) To use this as a user modifiable testbench do the following: -- - Save it as a file with a .vhd extension (i.e. File->Save As...) -- - Add it to your project as a testbench source (i.e. Project->Add Source...) -- LIBRARY IEEE; USE IEEE.STD_LOGIC_1164.ALL; USE IEEE.NUMERIC_STD.ALL; USE IEEE.STD_LOGIC_TEXTIO.ALL; USE STD.TEXTIO.ALL; ENTITY adapter_tester IS END adapter_tester; ARCHITECTURE testbench_arch OF adapter_tester IS -- If you get a compiler error on the following line, -- from the menu do Options->Configuration select VHDL 87 FILE RESULTS: TEXT OPEN WRITE_MODE IS "results.txt"; COMPONENT frequency_adapter PORT ( clk : In std_logic; clr : In std_logic; unofisso : In std_logic; clock_out : Out std_logic ); END COMPONENT; SIGNAL clk : std_logic; SIGNAL clr : std_logic; SIGNAL unofisso : std_logic; SIGNAL clock_out : std_logic; BEGIN UUT : frequency_adapter PORT MAP ( clk => clk, clr => clr, unofisso => unofisso, clock_out => clock_out ); PROCESS -- clock process for clk, BEGIN CLOCK_LOOP : LOOP clk <= transport '0'; WAIT FOR 10 us; clk <= transport '1'; WAIT FOR 10 us; WAIT FOR 40 us; clk <= transport '0'; WAIT FOR 40 us; END LOOP CLOCK_LOOP; END PROCESS; PROCESS -- Process for clk VARIABLE TX_OUT : LINE; VARIABLE TX_ERROR : INTEGER := 0; PROCEDURE CHECK_clock_out( next_clock_out : std_logic; TX_TIME : INTEGER ) IS VARIABLE TX_STR : String(1 to 4096); VARIABLE TX_LOC : LINE; BEGIN -- If compiler error ("/=" is ambiguous) occurs in the next line of code -- change compiler settings to use explicit declarations only IF (clock_out /= next_clock_out) THEN STD.TEXTIO.write(TX_LOC,string'("Error at time=")); STD.TEXTIO.write(TX_LOC, TX_TIME); STD.TEXTIO.write(TX_LOC,string'("us clock_out=")); IEEE.STD_LOGIC_TEXTIO.write(TX_LOC, clock_out); STD.TEXTIO.write(TX_LOC, string'(", Expected = ")); IEEE.STD_LOGIC_TEXTIO.write(TX_LOC, next_clock_out); STD.TEXTIO.write(TX_LOC, string'(" ")); TX_STR(TX_LOC.all'range) := TX_LOC.all; STD.TEXTIO.writeline(results, TX_LOC); STD.TEXTIO.Deallocate(TX_LOC); ASSERT (FALSE) REPORT TX_STR SEVERITY ERROR; TX_ERROR := TX_ERROR + 1; END IF; END; BEGIN -- -------------------- clr <= transport '0'; unofisso <= transport '1'; -- -------------------- WAIT FOR 20 us; -- Time=20 us CHECK_clock_out('1',20); -- -------------------- WAIT FOR 80 us; -- Time=100 us -- -------------------- IF (TX_ERROR = 0) THEN STD.TEXTIO.write(TX_OUT,string'("No errors or warnings")); STD.TEXTIO.writeline(results, TX_OUT); ASSERT (FALSE) REPORT "Simulation successful (not a failure). No problems detected. " SEVERITY FAILURE; ELSE STD.TEXTIO.write(TX_OUT, TX_ERROR); STD.TEXTIO.write(TX_OUT, string'( " errors found in simulation")); STD.TEXTIO.writeline(results, TX_OUT); ASSERT (FALSE) REPORT "Errors found during simulation" SEVERITY FAILURE; END IF; END PROCESS; END testbench_arch; CONFIGURATION frequency_adapter_cfg OF adapter_tester IS FOR testbench_arch END FOR; END frequency_adapter_cfg;