Constructor macro for honsed stv2c-opts-p structures.
Syntax:
(make-honsed-stv2c-opts [:help <help>] [:readme <readme>] [:stv <stv>] [:start-files <start-files>] [:search-path <search-path>] [:search-exts <search-exts>] [:defines <defines>] [:edition <edition>] [:strict <strict>] [:mem <mem>])
This is identical to make-stv2c-opts, except that we hons the structure we are creating.
This is an ordinary honsing
Macro:
(defmacro make-honsed-stv2c-opts (&rest args) (std::make-aggregate 'stv2c-opts args '((:help) (:readme) (:stv . "") (:start-files) (:search-path) (:search-exts quote ("v")) (:defines) (:edition . :system-verilog-2012) (:strict) (:mem . 4)) 'make-honsed-stv2c-opts t))