mirror of
https://github.com/verilator/verilator.git
synced 2025-01-09 08:07:46 +00:00
27 lines
515 B
Coq
27 lines
515 B
Coq
|
// $Id:$
|
||
|
// DESCRIPTION: Verilator: Verilog Test module
|
||
|
//
|
||
|
// This file ONLY is placed into the Public Domain, for any use,
|
||
|
// without warranty, 2003 by Wilson Snyder.
|
||
|
|
||
|
module t_param_b (/*AUTOARG*/
|
||
|
// Outputs
|
||
|
par, varwidth
|
||
|
);
|
||
|
|
||
|
parameter X = 1;
|
||
|
parameter FIVE = 0; // Overridden
|
||
|
parameter TWO = 2;
|
||
|
|
||
|
output [4:0] par;
|
||
|
output [X:0] varwidth;
|
||
|
|
||
|
wire [4:0] par = X;
|
||
|
wire [X:0] varwidth = (FIVE==5)?TWO:0;
|
||
|
|
||
|
endmodule
|
||
|
|
||
|
// Local Variables:
|
||
|
// compile-command: "./vlint __FILE__"
|
||
|
// End:
|