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

📄 selectram_a36.v

📁 本人正在学习vhdl语言
💻 V
字号:
//
// Module: 	SelectRAM_A36
//
// Description: Verilog instantiation template
//		Block SelectRAM
//		Single Port 512 x 36 bits
//
// Device: 	VIRTEX-II Family 
//-------------------------------------------------------------------------------------------
//
// Syntax for Synopsys FPGA Express
// synopsys translate_off

  defparam  

//"Read during Write" attribute for functional simulation
	U_RAMB16_S36.WRITE_MODE = "READ_FIRST" -type string; //WRITE_FIRST(default)/ READ_FIRST/ NO_CHANGE 
//RAM initialization ("0" by default) for functional simulation: see example

// synopsys translate_on	


//Block SelectRAM Instantiation
RAMB16_S36 U_RAMB16_S36 (   .DI(),    //insert 32-bit data_in bus ([31:0])
			    .DIP(),   //insert 4-bit parity data_in bus ([35:32])
 			    .ADDR(),  //insert 9-bit address bus ([8:0])
			    .EN(),    //insert enable signal
		 	    .WE(),    //insert write enable signal
			    .SSR(),   //insert set/reset signal
			    .CLK(),   //insert clock signal
			    .DO(),    //insert 32-bit data_out bus ([31:0])
			    .DOP()    //insert 4-bit parity data_out bus ([35:32])
			     );

// Attribute Decalrations:
  /* synopsys attribute 

Attribute "Read during Write mode" = WRITE_FIRST(default)/ READ_FIRST/ NO_CHANGE

	WRITE_MODE "READ_FIRST"
	*/
//Attributes for RAM initialization ("0" by default): see example


⌨️ 快捷键说明

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