blob: adf89147147d5ea7c4117240a67d1ff24654258c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.numeric_std.all;
entity saturatingadd is
port(
result : out unsigned(7 downto 0)
);
end saturatingadd;
architecture synth of saturatingadd is
begin
process is
begin
result <= "00000000";
end process;
end;
|