srlc128e.v

来自「本人正在学习vhdl语言」· Verilog 代码 · 共 36 行

V
36
字号
//
// Module: 	SRLC128E
//
// Description: Verilog instantiation template
//		SelectShiftRegister-II 
//		128 bit Shift Register with Carry and Clock Enable
//		Use Macro SRLC128E_MACRO.v
//
// Device: 	VIRTEX-II Family
//
// Date:	SAK / 04-17-2000 - XILINX
//
// Disclaimer:  THESE DESIGNS ARE PROVIDED "AS IS" WITH NO WARRANTY 
//              WHATSOEVER AND XILINX SPECIFICALLY DISCLAIMS ANY 
//              IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR
//              A PARTICULAR PURPOSE, OR AGAINST INFRINGEMENT.
//
//  Copyright (c) 2000 Xilinx, Inc.  All rights reserved.
//-----------------------------------------------------------------------------------------------------


//128-bit SelectShiftRegister-II Macro Instantiation
   SRLC128E_MACRO U_SRLC128E_MACRO ( .D(),          //insert Data_In signal
				     .A0(),         //insert first bit of the Address bus
				     .A1(),         //insert second bit of the Address bus
				     .A2(),         //insert third bit of the Address bus
				     .A3(),         //insert forth bit of the Address bus
				     .A4(),         //insert fifth bit of the Address bus
				     .A5(),         //insert sixth bit of the Address bus
				     .A6(),         //insert sixth bit of the Address bus
                        	     .CLK(),        //insert Clock 
                         	     .CE(),         //insert Clock Enable
                        	     .Q(),          //insert Addressable Data_Out
                        	     .Q128()        //insert Last bit Data_Out
		     		   );

⌨️ 快捷键说明

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