test_clock.v
来自「本代码是在modelsim下运行的模拟8×8位的CPU」· Verilog 代码 · 共 16 行
V
16 行
module testbench_clock;
wire clk;
clock c (clk);
test t (clk);
endmodule
module test(clk);
input clk;
initial begin
$monitor($time,,,"clock=%b",clk);
#50 $stop;
end
endmodule
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?