half_clk.v

来自「it about using veriolog complement some 」· Verilog 代码 · 共 33 行

V
33
字号
//******************////copyright 2007, DTK//all right reserved////project name: : test2//filename    : file_half_clk//author      : wangyang//data        : 2007/8/2//version     : 1.0////module name : module_half_clk//abstract     : half_clk////modification history//---------------------------------//&Log&////*************************module half_clk(Reset,Clk_in,Clk_out);input Reset;input Clk_in;output Clk_out;wire Reset;wire Clk_in;reg Clk_out;always@(posedge Clk_in)//???????????2??begin:half_clkif(!Reset) Clk_out=0;else Clk_out=~Clk_out;endendmodule

⌨️ 快捷键说明

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