Commentary
This commit is contained in:
parent
7a8184d206
commit
e41e26717b
|
|
@ -202,9 +202,8 @@ Verilator - Convert Verilog code to C++/SystemC
|
||||||
|
|
||||||
verilator --help
|
verilator --help
|
||||||
verilator --version
|
verilator --version
|
||||||
verilator --cc [options] [top_level.v] [opt_c_files.cpp/c/cc/a/o/so]
|
verilator --cc [options] [top_level.v]... [opt_c_files.cpp/c/cc/a/o/so]
|
||||||
verilator --sc [options] [top_level.v] [opt_c_files.cpp/c/cc/a/o/so]
|
verilator --sc [options] [top_level.v]... [opt_c_files.cpp/c/cc/a/o/so]
|
||||||
verilator --sp [options] [top_level.v] [opt_c_files.cpp/c/cc/a/o/so]
|
|
||||||
verilator --lint-only [top_level.v]...
|
verilator --lint-only [top_level.v]...
|
||||||
|
|
||||||
=head1 DESCRIPTION
|
=head1 DESCRIPTION
|
||||||
|
|
|
||||||
|
|
@ -218,7 +218,7 @@ private:
|
||||||
if (debug()>=9) newp->dumpTree(cout,"--SELBTn: ");
|
if (debug()>=9) newp->dumpTree(cout,"--SELBTn: ");
|
||||||
nodep->replaceWith(newp); pushDeletep(nodep); nodep=NULL;
|
nodep->replaceWith(newp); pushDeletep(nodep); nodep=NULL;
|
||||||
}
|
}
|
||||||
else if (ddtypep->castNodeClassDType()) {
|
else if (ddtypep->castNodeClassDType()) { // It's packed, so a bit from the packed struct
|
||||||
// SELBIT(range, index) -> SEL(array, index, 1)
|
// SELBIT(range, index) -> SEL(array, index, 1)
|
||||||
AstSel* newp = new AstSel (nodep->fileline(),
|
AstSel* newp = new AstSel (nodep->fileline(),
|
||||||
fromp,
|
fromp,
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
// please note it here, otherwise:**
|
// please note it here, otherwise:**
|
||||||
//
|
//
|
||||||
// This file ONLY is placed into the Public Domain, for any use,
|
// This file ONLY is placed into the Public Domain, for any use,
|
||||||
// without warranty, 2012 by Wilson Snyder.
|
// without warranty, 2013 by ____YOUR_NAME_HERE____.
|
||||||
|
|
||||||
module t (/*AUTOARG*/
|
module t (/*AUTOARG*/
|
||||||
// Inputs
|
// Inputs
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue