aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/pybind11/docs/cmake
Commit message (Expand)AuthorAgeFilesLines
* Update pybind11 to version 2.6.1Miodrag Milanovic2021-01-021-0/+8
'#n1'>1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
entity tb_slice01 is
end tb_slice01;

library ieee;
use ieee.std_logic_1164.all;

architecture behav of tb_slice01 is
  signal rst : std_logic;
  signal clk : std_logic;
  signal di : std_logic;
  signal do : std_logic_vector (3 downto 0);
begin
  dut: entity work.slice01
    generic map (w => 4)
    port map (rst, clk, di, do);

  process
    procedure pulse is
    begin
      clk <= '0';
      wait for 1 ns;
      clk <= '1';
      wait for 1 ns;
    end pulse;
    constant b0 : std_logic_vector (3 downto 0) := "1101";
  begin
    rst <= '1';
    pulse;
    rst <= '0';
    for i in b0'reverse_range loop
      di <= b0 (i);
      pulse;
    end loop;
    assert do = b0 severity error;
    wait;
  end process;
end behav;