PoC.arith.convert_bin2bcd¶
Todo
No documentation available.
Entity Declaration:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | entity arith_convert_bin2bcd is
generic (
BITS : positive := 8;
DIGITS : positive := 3;
RADIX : positive := 2
);
port (
Clock : in std_logic;
Reset : in std_logic;
Start : in std_logic;
Busy : out std_logic;
Binary : in std_logic_vector(BITS - 1 downto 0);
IsSigned : in std_logic := '0';
BCDDigits : out T_BCD_VECTOR(DIGITS - 1 downto 0);
Sign : out std_logic
);
end entity;
|