Skip to content

Commit

Permalink
Merge pull request #2562 from chipsalliance/plusarg-width
Browse files Browse the repository at this point in the history
fix "plusarg default bit width"
  • Loading branch information
ingallsj authored Jul 18, 2020
2 parents 62f719c + 5d4eb6b commit d32b93f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main/resources/vsrc/plusarg_reader.v
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

// No default parameter values are intended, nor does IEEE 1800-2012 require them (clause A.2.4 param_assignment),
// but Incisive demands them. These default values should never be used.
module plusarg_reader #(parameter FORMAT="borked=%d", WIDTH=1, bit [WIDTH-1:0] DEFAULT=0) (
module plusarg_reader #(
parameter FORMAT="borked=%d",
parameter WIDTH=1,
parameter [WIDTH-1:0] DEFAULT=0
) (
output [WIDTH-1:0] out
);

Expand Down

0 comments on commit d32b93f

Please sign in to comment.