RVSCC/test/Test_CPU.sv

12 lines
198 B
Systemverilog
Raw Normal View History

2022-12-03 00:22:28 +00:00
`timescale 1ns / 1ps
module Test_CPU();
logic clk, reset;
CPU cpu(clk, reset);
always #1 clk = ~clk;
initial begin
reset = 1;
#5
reset = 0;
end
endmodule