aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
ModeNameSize
-rwxr-xr-xconfigtest.pl675logstatsplain
-rwxr-xr-xdownload.pl2319logstatsplain
-rw-r--r--flash.sh1996logstatsplain
-rwxr-xr-xgen_busybox_config.pl334logstatsplain
-rw-r--r--gen_busybox_menuconfig.pl1745logstatsplain
-rwxr-xr-xipkg28362logstatsplain
-rwxr-xr-xmake-ipkg-dir.sh299logstatsplain
-rwxr-xr-xpatch-kernel.sh1378logstatsplain
-rwxr-xr-xrstrip.sh489logstatsplain
.highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
entity tb_iassoc01 is
end tb_iassoc01;

library ieee;
use ieee.std_logic_1164.all;

architecture behav of tb_iassoc01 is
  signal a : natural;
  signal b : natural;
  signal res : natural;
begin
  dut: entity work.iassoc01
    port map (a, b, res);

  process
  begin
    a <= 1;
    b <= 5;
    wait for 1 ns;
    assert res = 6 severity failure;

    a <= 197;
    b <= 203;
    wait for 1 ns;
    assert res = 400 severity failure;

    wait;
  end process;
end behav;