sys_clk_gen_ds.v

来自「已经在xilinx的ML555开发板上实现的PCIEx4的设计」· Verilog 代码 · 共 31 行

V
31
字号
//-- Copyright(C) 2005 by Xilinx, Inc. All rights reserved.//-- This text contains proprietary, confidential//-- information of Xilinx, Inc., is distributed//-- under license from Xilinx, Inc., and may be used,//-- copied and/or disclosed only pursuant to the terms//-- of a valid license agreement with Xilinx, Inc. This copyright//-- notice must be retained as part of this text at all times.`timescale 1ps/1psmodule sys_clk_gen_ds (sys_clk_p, sys_clk_n);output	sys_clk_p;output	sys_clk_n;parameter        offset = 0;parameter        halfcycle = 500;defparam 	clk_gen.offset = offset;defparam 	clk_gen.halfcycle = halfcycle;sys_clk_gen 	clk_gen (			.sys_clk(sys_clk_p)			);assign sys_clk_n = !sys_clk_p;endmodule // sys_clk_gen_ds

⌨️ 快捷键说明

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