PoC.arith.Counter_Gray

Todo

No documentation available.

Entity Declaration:

 1    INIT : natural         := 0                    -- Initial/reset counter value
 2  );
 3  port (
 4    Clock     : in  std_logic;
 5    Reset     : in  std_logic;                          -- Reset to INIT value
 6    Increment : in  std_logic;                          -- Increment
 7    Decrement : in  std_logic    := '0';                  -- Decrement
 8    Value     : out std_logic_vector(BITS-1 downto 0);  -- Value output
 9    CarryOut  : out std_logic                            -- Carry output
10  );
11end entity;
12
13
14architecture rtl of arith_Counter_Gray is