Allow Makefile override of RESET_DELAY (#322)
This commit is contained in:
parent
2522bdd7b8
commit
3a809b209f
@ -1,12 +1,16 @@
|
||||
// See LICENSE for license details.
|
||||
|
||||
`ifndef RESET_DELAY
|
||||
`define RESET_DELAY 777.7
|
||||
`endif
|
||||
|
||||
module TestDriver;
|
||||
|
||||
reg clock = 1'b0;
|
||||
reg reset = 1'b1;
|
||||
|
||||
always #(`CLOCK_PERIOD/2.0) clock = ~clock;
|
||||
initial #777.7 reset = 0;
|
||||
always #(`CLOCK_PERIOD/2.0) clk = ~clk;
|
||||
initial #(`RESET_DELAY) reset = 0;
|
||||
|
||||
// Read input arguments and initialize
|
||||
reg verbose = 1'b0;
|
||||
|
Loading…
Reference in New Issue
Block a user