相关代码 |
|
-- FileName: Full_Adder.vhd entity Full_Adder is port( X,Y,CIN : in BIT; COUT : out BIT; SUM : out BIT ); end entity Full_Adder; architecture syn of Full_Adder is signal temp1,temp2 : BIT; begin temp1 temp2 SUM COUT end architecture syn;
相关资源 |
|