📄 sys_clk_gen.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 (sys_clk);output sys_clk;reg sys_clk;parameter offset = 0;parameter halfcycle = 500;initial begin sys_clk = 0; #(offset); forever #(halfcycle) sys_clk = ~sys_clk;endendmodule // sys_clk_gen
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -