• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • 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
        • Printer
          • Ps
          • Basic-printing
          • Verilog-printing
          • Printing-locally
            • Vl-psconfig-p
              • Vl-psconfig
              • Make-vl-psconfig
                • Change-vl-psconfig
                • Honsed-vl-psconfig
                • Make-honsed-vl-psconfig
                • Vl-psconfig->tabsize
                • Vl-psconfig->package
                • Vl-psconfig->htmlp
                • Vl-psconfig->base
                • Vl-psconfig->autowrap-ind
                • Vl-psconfig->autowrap-col
              • Vl-ps-full-reset
              • Vl-ps-save-config
              • Vl-ps-load-config
              • Vl-ps-text-reset
              • With-local-ps
            • Formatted-printing
            • Accessing-printed-output
            • Vl-printedlist
            • Json-printing
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-psconfig-p

    Make-vl-psconfig

    Constructor macro for vl-psconfig-p structures.

    Syntax:

    (make-vl-psconfig [:autowrap-col <autowrap-col>] 
                      [:autowrap-ind <autowrap-ind>] 
                      [:htmlp <htmlp>] 
                      [:tabsize <tabsize>] 
                      [:package <package>] 
                      [:base <base>]) 
    

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

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

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

    Definition

    This is an ordinary make- macro introduced by defaggregate.

    Macro: make-vl-psconfig

    (defmacro make-vl-psconfig (&rest args)
      (std::make-aggregate 'vl-psconfig
                           args
                           '((:autowrap-col)
                             (:autowrap-ind)
                             (:htmlp)
                             (:tabsize)
                             (:package)
                             (:base))
                           'make-vl-psconfig
                           nil))