PPT Slide
architecture a of comp is
signal en, skip: std_logic_vector(8 downto 0);
altb <= (not en(0)) and (not skip(0));
en(8) <= '1'; skip(8) <= '0';
en(i) <= not (a(i) xor b(i)) and en(i+1);
if (skip(i+1) = '1') then
skip(i) <= en(i+1) and (a(i) and not b(i));
VHDL architecture that implements comparator logic as shown on previous slides.