• Top
    • Documentation
    • Books
    • Recursion-and-induction
    • Boolean-reasoning
    • Debugging
    • Projects
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Fgl
      • Vl
        • Syntax
        • Loader
        • Warnings
        • Getting-started
        • Utilities
        • Printer
          • Ps
          • Verilog-printing
          • Basic-printing
          • Printing-locally
            • Vl-psconfig-p
            • 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
      • Testing-utilities
      • Math
    • Printing-locally

    Vl-ps-load-config

    Load configuration settings from a vl-psconfig-p object into ps.

    Signature
    (vl-ps-load-config config &key (ps 'ps)) → ps
    Arguments
    config — Guard (vl-psconfig-p config).

    Note that this does not change the currently-printed text or update the column number; it only changes the configuration settings.

    Definitions and Theorems

    Function: vl-ps-load-config-fn

    (defun
     vl-ps-load-config-fn (config ps)
     (declare (xargs :stobjs (ps)))
     (declare (xargs :guard (vl-psconfig-p config)))
     (let
        ((__function__ 'vl-ps-load-config))
        (declare (ignorable __function__))
        (b* (((vl-psconfig config) config))
            (vl-ps-seq (vl-ps-update-autowrap-col config.autowrap-col)
                       (vl-ps-update-autowrap-ind config.autowrap-ind)
                       (vl-ps-update-htmlp config.htmlp)
                       (vl-ps-update-tabsize config.tabsize)
                       (vl-ps-update-package config.package)
                       (vl-ps-update-base config.base)
                       (vl-ps-update-eviscconfig config.eviscconfig)))))