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

📄 ddr_lvds_3state.v

📁 本人正在学习vhdl语言
💻 V
字号:
//
// Module:      DDR_LVDS_3STATE 
//
// Description: Verilog Instantiation Template
//		DDR 3-State Flip-Flops with LVDS 3-State output buffer
//		
//
// Device: 	VIRTEX-II Family 
//
//---------------------------------------------------------------------
//
//Synchronous Output DDR primitive instantiation

FDDRRSE U1  (   .D0(), //1st Bit Data-In
		.D1(), //2nd Bit Data-In
		.C0(), //Clock input for 1st bit
		.C1(), //Clock input for 2nd bit (180 deg. output from DLL or ~C0)
		.CE(), //Clock Enable
		.R(),  //Reset
		.S(),  //Set
		.Q()   //DDR data out
	    );

//Synchronous 3-State DDR primitive instantiation

FDDRRSE U2  (   .D0(), //1st Bit 3-State In
		.D1(), //2nd Bit 3-State In
		.C0(), //Clock input for 1st bit
		.C1(), //Clock input for 2nd bit (180 deg. output from DLL or ~C0)
		.CE(), //Clock Enable
		.R(),  //Reset
		.S(),  //Set
		.Q()   //DDR 3-State out
	    );

//3-State LVDS buffer instantiation

OBUFTDS_LVDS_25 U3  ( .I(), // Input to LVDS buffer = DDR data out
		      .T(), // 3-State input to LVDS buffer = DDR 3-State out
		      .O(), // P-Channel Output of LVDS buffer
		      .OB() // N-Channel Output of LVDS buffer
		    );

//---------------------------------------------------------------------

⌨️ 快捷键说明

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