📄 half_clk_test.v
字号:
//******************////copyright 2007, DTK//all right reserved////project name: : test2//filename : file_half_clk_test//author : wangyang//data : 2007/8/2//version : 1.0////module name : module_half_clk_test//abstract : half_clk_test////modification history//---------------------------------//&Log&////*************************`timescale 1ns/100ps`define clk_clycle 50module half_clk_test;reg Reset;reg Clk_in;wire Clk_out;always #`clk_clycle Clk_in=~Clk_in;initialbeginClk_in=0;Reset=1;#10 Reset=0;#110 Reset=1;#10000 $stop;endhalf_clk m(.Reset(Reset),.Clk_in(Clk_in),.Clk_out(Clk_out));endmodule
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -