19 lines
335 B
Verilog
19 lines
335 B
Verilog
/*
|
|
* This program tests the simple parameter override from the command
|
|
* line. This program should be compiled with the -Pmain.foo=2 argument.
|
|
*/
|
|
module main;
|
|
|
|
parameter foo = 1;
|
|
|
|
initial begin
|
|
if (foo != 2) begin
|
|
$display("FAILED: %m.foo = %d", foo);
|
|
$finish;
|
|
end
|
|
|
|
$display("PASSED");
|
|
end
|
|
|
|
endmodule
|