top.v

来自「yong VerilogHDL yu yan bianxie de pinlv 」· Verilog 代码 · 共 11 行

V
11
字号
//`include "signal.v"//`include "oclk.v"module top(clk,rst,q_out);    input clk,rst;    output[7:0] q_out;    wire clk1khz;        signal sig(.clkin(clk1khz),.rst(rst),.q_out(q_out));    oclk    oc(.clk(clk),.rst(rst),.clkout(clk1khz));endmodule

⌨️ 快捷键说明

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