mirror of https://github.com/zachjs/sv2v.git
add UnbasedUnsized to --exclude help message
This commit is contained in:
parent
150b7f2af1
commit
c843efd504
|
|
@ -94,8 +94,8 @@ Preprocessing:
|
||||||
--skip-preprocessor Disable preprocessor
|
--skip-preprocessor Disable preprocessor
|
||||||
Conversion:
|
Conversion:
|
||||||
--pass-through Dump input without converting
|
--pass-through Dump input without converting
|
||||||
-E --exclude=CONV Exclude a particular conversion (always, assert,
|
-E --exclude=CONV Exclude a particular conversion (Always, Assert,
|
||||||
interface, or logic)
|
Interface, Logic, or UnbasedUnsized)
|
||||||
-v --verbose Retain certain conversion artifacts
|
-v --verbose Retain certain conversion artifacts
|
||||||
-w --write=MODE/FILE How to write output; default is 'stdout'; use
|
-w --write=MODE/FILE How to write output; default is 'stdout'; use
|
||||||
'adjacent' to create a .v file next to each input;
|
'adjacent' to create a .v file next to each input;
|
||||||
|
|
|
||||||
|
|
@ -66,8 +66,8 @@ defaultJob = Job
|
||||||
, passThrough = nam_ "pass-through" &= help "Dump input without converting"
|
, passThrough = nam_ "pass-through" &= help "Dump input without converting"
|
||||||
&= groupname "Conversion"
|
&= groupname "Conversion"
|
||||||
, exclude = nam_ "exclude" &= name "E" &= typ "CONV"
|
, exclude = nam_ "exclude" &= name "E" &= typ "CONV"
|
||||||
&= help ("Exclude a particular conversion (always, assert, interface,"
|
&= help ("Exclude a particular conversion (Always, Assert, Interface,"
|
||||||
++ " or logic)")
|
++ " Logic, or UnbasedUnsized)")
|
||||||
, verbose = nam "verbose" &= help "Retain certain conversion artifacts"
|
, verbose = nam "verbose" &= help "Retain certain conversion artifacts"
|
||||||
, write = Stdout &= ignore -- parsed from the flexible flag below
|
, write = Stdout &= ignore -- parsed from the flexible flag below
|
||||||
, writeRaw = "s" &= name "write" &= name "w" &= explicit &= typ "MODE/FILE"
|
, writeRaw = "s" &= name "write" &= name "w" &= explicit &= typ "MODE/FILE"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue