URL
https://opencores.org/ocsvn/lwrisc/lwrisc/trunk
Subversion Repositories lwrisc
[/] [lwrisc/] [trunk/] [RTL/] [test.v] - Rev 7
Go to most recent revision | Compare with Previous | Blame | View Log
`timescale 10ns / 10ns module test; reg clk; reg rst; initial begin #1 clk = 0; #10 rst = 0; #10 rst = 1; #10 rst = 0; end always #1 clk=~clk ; ClaiRISC_core I_ClaiRISC_core ( .clk(clk), .rst(rst) ) ; endmodule
Go to most recent revision | Compare with Previous | Blame | View Log