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

📄 selectram_32s.v

📁 本人正在学习vhdl语言
💻 V
字号:
//
// Module: 	SelectRAM_32S
//
// Description: Verilog instantiation template
//		Distributed SelectRAM
//		Single Port 32 x 1
//		can be used also for RAM32X1S_1
//
// Device: 	VIRTEX-II Family 
//-------------------------------------------------------------------------------------------
//
//
// Syntax for Synopsys FPGA Express
// synopsys translate_off

  defparam  

  //RAM initialization ("0" by default) for functional simulation:
  U_RAM32X1S.INIT = 32'h00000000;
// synopsys translate_on	


//Distributed SelectRAM Instantiation
RAM32X1S U_RAM32X1S  (  .D(),    //insert input signal
			.WE(),   //insert Write Enable signal
			.WCLK(), //insert Write Clock signal
			.A0(),   //insert Address 0 signal
			.A1(),   //insert Address 1 signal
			.A2(),   //insert Address 2 signal
			.A3(),   //insert Address 3 signal
			.A4(),   //insert Address 4 signal
			.O()     //insert output signal
		      );

// synthesis attribute declarations
  /* synopsys attribute 

	INIT "00000000"
  */	

⌨️ 快捷键说明

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