?? clk_div_tb.v
字號:
`timescale 1ns / 1ps////////////////////////////////////////////////////////////////////////////////// Company: // Engineer://// Create Date: 22:37:19 10/29/2007// Design Name: clk_div// Module Name: G:/Xilinx/ISEexamples/mcu1/clk_div_tb.v// Project Name: mcu1// Target Device: // Tool versions: // Description: //// Verilog Test Fixture created by ISE for module: clk_div//// Dependencies:// // Revision:// Revision 0.01 - File Created// Additional Comments:// ////////////////////////////////////////////////////////////////////////////////module clk_div_tb_v; // Inputs reg clkin; // Outputs wire clk1; wire clk2; wire clk3; // Instantiate the Unit Under Test (UUT) clk_div uut ( .clkin(clkin), .clk1(clk1), .clk2(clk2), .clk3(clk3) ); initial begin // Initialize Inputs
#100; clkin = 0; // Wait 100 ns for global reset to finish forever #100 clkin = ~clkin; // Add stimulus here end endmodule
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -