mirror of
https://github.com/handsomezhuzhu/2025-yatcpu.git
synced 2026-02-20 12:00:14 +00:00
36 lines
636 B
Verilog
36 lines
636 B
Verilog
`timescale 1ns / 1ps
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
// Company:
|
|
// Engineer:
|
|
//
|
|
// Create Date: 2021/12/17 16:31:05
|
|
// Design Name:
|
|
// Module Name: test
|
|
// Project Name:
|
|
// Target Devices:
|
|
// Tool Versions:
|
|
// Description:
|
|
//
|
|
// Dependencies:
|
|
//
|
|
// Revision:
|
|
// Revision 0.01 - File Created
|
|
// Additional Comments:
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
module test();
|
|
reg clock;
|
|
reg reset;
|
|
initial begin
|
|
clock = 0;
|
|
forever #1 clock = ~clock;
|
|
end
|
|
initial begin
|
|
reset = 1;
|
|
#2 reset = 0;
|
|
end
|
|
Top top(clock, reset);
|
|
endmodule
|