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