Constructor macro for vl-pp-opts-p structures.
Syntax:
(make-vl-pp-opts [:help <help>] [:readme <readme>] [:output <output>] [:outdefs <outdefs>] [:start-files <start-files>] [:include-dirs <include-dirs>] [:defines <defines>] [:edition <edition>] [:strict <strict>] [:mem <mem>])
This is our preferred way to construct vl-pp-opts-p structures. It simply conses together a structure with the specified fields.
This macro generates a new vl-pp-opts-p structure from scratch. See also change-vl-pp-opts, which can "change" an existing structure, instead.
The vl-pp-opts-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-vl-pp-opts instead.
This is an ordinary
Macro:
(defmacro make-vl-pp-opts (&rest args) (std::make-aggregate 'vl-pp-opts args '((:help) (:readme) (:output . "vl-pp.out") (:outdefs . "vl-pp.defs") (:start-files) (:include-dirs) (:defines) (:edition . :system-verilog-2012) (:strict) (:mem . 4)) 'make-vl-pp-opts nil))