• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Fgl
      • Vwsim
      • Vl
        • Syntax
        • Loader
        • Warnings
        • Getting-started
        • Utilities
        • Printer
          • Ps
          • Verilog-printing
          • Basic-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->eviscconfig
                • 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
            • Json-printing
            • Vl-printedlist
          • Kit
          • Mlib
          • Transforms
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-psconfig-p

    Honsed-vl-psconfig

    Raw constructor for honsed vl-psconfig-p structures.

    Syntax:

    (honsed-vl-psconfig autowrap-col autowrap-ind 
                        htmlp tabsize package base eviscconfig)

    This is identical to vl-psconfig, except that we hons the structure we are creating.

    Definition

    This is an ordinary honsing constructor introduced by defaggregate.

    Function: honsed-vl-psconfig

    (defun honsed-vl-psconfig
           (autowrap-col autowrap-ind
                         htmlp tabsize package base eviscconfig)
     (declare (xargs :guard (and (natp autowrap-col)
                                 (natp autowrap-ind)
                                 (booleanp htmlp)
                                 (posp tabsize)
                                 (symbolp package)
                                 (print-base-p base)
                                 (str::eviscconfig-p eviscconfig))))
     (mbe
      :logic (vl-psconfig autowrap-col autowrap-ind
                          htmlp tabsize package base eviscconfig)
      :exec
      (hons
       :vl-psconfig
       (hons
        (hons 'autowrap-col autowrap-col)
        (hons
           (hons 'autowrap-ind autowrap-ind)
           (hons (hons 'htmlp htmlp)
                 (hons (hons 'tabsize tabsize)
                       (hons (hons 'package package)
                             (hons (hons 'base base)
                                   (hons (hons 'eviscconfig eviscconfig)
                                         nil))))))))))