i have two input 16-bit LOGIC_VECTOR A,B and a Cin:
A,B : in STD_LOGIC_VECTOR(15 DOWNTO 0);
Cin : in STD_LOGIC;
F : out STD_LOGIC_VECTOR(15 downto 0);
Cout : out STD_LOGIC
and 17-bit LOGIC_VECTOR result signal :
signal result : STD_LOGIC_VECTOR(16 DOWNTO 0);
and the following code to add A and B and Cin :
result <= ('0' & A) + ('0' & B) + Cin;
F <= result(15 DOWNTO 0);
Cout <= result(16);
but it just add A,B and Cin is ignored. how can i make this right?
testbench:
A <= "1010100101110011";
B <= "0001111101010101";
Cin <= '1';
but the F is :
1100100011001000
Verify your connections, your code works as written. I tried the following:
And got:
Where
F = 1100100011001001
, as expected.