Constructor macro for honsed vl-model-opts-p structures.
Syntax:
(make-honsed-vl-model-opts [:help <help>] [:readme <readme>] [:outdir <outdir>] [:model-file <model-file>] [:esims-file <esims-file>] [:verilog-file <verilog-file>] [:start-files <start-files>] [:search-path <search-path>] [:include-dirs <include-dirs>] [:search-exts <search-exts>] [:defines <defines>] [:unroll-limit <unroll-limit>] [:dropmods <dropmods>] [:edition <edition>] [:strict <strict>] [:mem <mem>] [:mustfail <mustfail>] [:mustget <mustget>])
This is identical to make-vl-model-opts, except that we hons the structure we are creating.
This is an ordinary honsing
Macro:
(defmacro make-honsed-vl-model-opts (&rest args) (std::make-aggregate 'vl-model-opts args '((:help) (:readme) (:outdir . ".") (:model-file . "model.sao") (:esims-file . "esims.sao") (:verilog-file . "vl_model.v") (:start-files) (:search-path) (:include-dirs quote (".")) (:search-exts quote ("v")) (:defines) (:unroll-limit . 100) (:dropmods) (:edition . :system-verilog-2012) (:strict) (:mem . 4) (:mustfail) (:mustget)) 'make-honsed-vl-model-opts t))