?? 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 + -