• 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-json
          • Vl-gather
          • Vl-server
            • Vl-server-opts-p
              • Parse-vl-server-opts
              • Vl-server-opts
              • Make-vl-server-opts
                • Change-vl-server-opts
                • Honsed-vl-server-opts
                • Make-honsed-vl-server-opts
                • *vl-server-opts-usage*
                • Vl-server-opts->root
                • Vl-server-opts->readme
                • Vl-server-opts->public
                • Vl-server-opts->port
                • Vl-server-opts->mem
                • Vl-server-opts->help
            • 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-server-opts-p

    Make-vl-server-opts

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

    Syntax:

    (make-vl-server-opts [:help <help>] 
                         [:readme <readme>] 
                         [:mem <mem>] 
                         [:port <port>] 
                         [:root <root>] 
                         [:public <public>]) 
    

    This is our preferred way to construct vl-server-opts-p structures. It simply conses together a structure with the specified fields.

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

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

    Definition

    This is an ordinary make- macro introduced by defaggregate.

    Macro: make-vl-server-opts

    (defmacro make-vl-server-opts (&rest args)
     (std::make-aggregate
      'vl-server-opts
      args
      '((:help)
        (:readme)
        (:mem . 6)
        (:port . 9999)
        (:root . "./translations")
        (:public
         .
         "/v/filer5b/v11q001/acl2/acl2-git-scratch/books/centaur/vl2014/server/public"))
      'make-vl-server-opts
      nil))