PoC.arith.convert_bin2bcd

Todo

No documentation available.

Entity Declaration:

 1    DIGITS              : positive := 3;
 2    RADIX               : positive := 2;
 3    REGISTER_OUTPUT     : boolean  := FALSE
 4  );
 5  port (
 6    Clock               : in std_logic;
 7    Reset               : in std_logic;
 8
 9    Start               : in std_logic;
10    Busy                : out std_logic;
11
12    Binary              : in std_logic_vector(BITS - 1 downto 0);
13    IsSigned            : in std_logic  := '0';
14    BCDDigits           : out T_BCD_VECTOR(DIGITS - 1 downto 0);
15    Sign                : out std_logic
16  );
17end entity;