Ciro Santilli OurBigBook.com  Sponsor 中国独裁统治 China Dictatorship 新疆改造中心、六四事件、法轮功、郝海东、709大抓捕、2015巴拿马文件 邓家贵、低端人口、西藏骚乱
vhdl/stop_delta_tb.vhdl
-- Simulators update a simulation step only up to a certain number of times.
-- This would lead to an infinite loop, so any simulators should give an error.
-- ghdl uses he --stop-delta option to determine how many steps should be done.

library IEEE;
use IEEE.std_logic_1164.all;

entity stop_delta_tb is
end stop_delta_tb;

architecture behav of stop_delta_tb is
    signal s0 : std_logic := '0';
begin
    -- s0 <= not s0;
end behav;