Brent Kung Adder 16 bit full code

8
1. Entity pgblock is Port ( a: in std_logic; b: in std_logic; g0 : out std_logic; p0: out std_logic); end pgblock; architecture Behavioral o pgcell is g0 !"( a and b); p0 !" (a #or b); end behavioral; $. entity blackcell is port (g0 : in std_logic; p0 : in std_logic; g1 : in std_logic; p1 : in std_logic; % : out &' _ *%+,; P : out &' _ *%+,); end blackcell ; architecture Behavioral o blackcell is % !"( g1 or(g0 and p1)); P !" (p0 and p1); End behavioral; -. EntitySUMBLOCK is

description

Brent Kung 16 bit full coding and results

Transcript of Brent Kung Adder 16 bit full code

1. Entity pgblock isPort ( a: in std_logic; b: in std_logic;g0 : out std_logic;p0: out std_logic);end pgblock; architecture Behavioral of pgcell isg0