1
0
Fork 0

Make plusarg_reader default args work with VCS (#765)

Resolves #764
This commit is contained in:
Andrew Waterman 2017-05-24 21:38:56 -07:00 committed by GitHub
parent dbc5e7c494
commit 618468a06b
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
// 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 #(string FORMAT="borked", int DEFAULT=0) (
module plusarg_reader #(string FORMAT="borked=%d", int DEFAULT=0) (
output [31:0] out
);