⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 adder4.vhd

📁 c#设计模式WithCla
💻 VHD
字号:


-- This VHDL Source Have been create with WITHCLASS95
-- Scrip file written by Clerbois M

package ADDER4PKG is
    COMPONENT ADDER4
	PORT (
--	CLOCK,RESET:IN BIT; only for synchronous object
  A :  IN BIT_VECTOR(0TO3 ) ;
  B :  IN BIT_VECTOR(0TO3) ;
  S :  OUTBV (0TO3) ;
  Cout :  OUT BIT  );
	END ADDER4;
END ADDER4PKG;

ENTITY  ADDER4 is 
	PORT (
--	CLOCK,RESET:IN BIT; only for synchronous object
 	 A :  IN BIT_VECTOR(0TO3 ) ;
 	 B :  IN BIT_VECTOR(0TO3) ;
 	 S :  OUTBV (0TO3) ;
 	 Cout :  OUT BIT  );
	END ADDER4;
END ADDER4;

ARCHITECTURE FSMADDER4 OF ADDER4 IS
 
 

--BEGIN
--Insert NOT State machine Process here
-- process ()

-- AGGREGATION of ONE TO MANY == instantation of object
-- copy the lines N times and modify the parameters
 ADD : FullAdder ( -- list of signals ) ; 

-- AGGREGATION of ONE TO ONE == instantation of an object
-- Generate the instantiation line and modify the parameters
 MMM : Bidon ( -- list of signals ) ; 



-- begin
-- end process;

-- Insert here the process source file generated with state code report (cut and paste)
-- Use the script file vhdlst.sct to generate the state machine

END FSMADDER4;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -