📄 sys_clk_gen_ds.v
字号:
//-- 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -