• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
        • Warnings
        • Primitives
        • Use-set
        • Syntax
        • Getting-started
        • Utilities
        • Loader
        • Transforms
        • Lint
        • Mlib
        • Server
        • Kit
          • Vl-model
            • Vl-model-opts-p
              • Parse-vl-model-opts
              • Vl-model-opts
              • Make-vl-model-opts
                • Honsed-vl-model-opts
                • Change-vl-model-opts
                • *vl-model-opts-usage*
                • Make-honsed-vl-model-opts
                • Vl-model-opts->verilog-file
                • Vl-model-opts->unroll-limit
                • Vl-model-opts->strict
                • Vl-model-opts->start-files
                • Vl-model-opts->search-path
                • Vl-model-opts->search-exts
                • Vl-model-opts->readme
                • Vl-model-opts->outdir
                • Vl-model-opts->mustget
                • Vl-model-opts->mustfail
                • Vl-model-opts->model-file
                • Vl-model-opts->mem
                • Vl-model-opts->include-dirs
                • Vl-model-opts->help
                • Vl-model-opts->esims-file
                • Vl-model-opts->edition
                • Vl-model-opts->dropmods
                • Vl-model-opts->defines
            • Vl-json
            • Vl-gather
            • Vl-server
            • Vl-pp
            • Vl-lint
            • Vl-main
            • Vl-toolkit-other-command
            • Vl-help
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-model-opts-p

    Make-vl-model-opts

    Constructor macro for vl-model-opts-p structures.

    Syntax:

    (make-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 our preferred way to construct vl-model-opts-p structures. It simply conses together a structure with the specified fields.

    This macro generates a new vl-model-opts-p structure from scratch. See also change-vl-model-opts, which can "change" an existing structure, instead.

    The vl-model-opts-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-vl-model-opts instead.

    Definition

    This is an ordinary make- macro introduced by defaggregate.

    Macro: make-vl-model-opts

    (defmacro make-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-vl-model-opts
                           nil))