• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Debugging
    • Projects
    • 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-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
        • Vwsim
        • Fgl
        • Vl
        • Svl
        • X86isa
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Printing-locally

    Vl-ps-text-reset

    Erase the contents of ps without altering its configuration.

    Signature
    (vl-ps-text-reset &key (ps 'ps)) → ps

    (vl-ps-text-reset) erases any text in ps and sets the column number to 0. It does not alter any of the configuration variables. See also vl-ps-full-reset for a way to completely restore ps to its default state.

    Definitions and Theorems

    Function: vl-ps-text-reset-fn

    (defun vl-ps-text-reset-fn (ps)
      (declare (xargs :stobjs (ps)))
      (declare (xargs :guard t))
      (let ((__function__ 'vl-ps-text-reset))
        (declare (ignorable __function__))
        (vl-ps-seq (vl-ps-update-rchars nil)
                   (vl-ps-update-col 0))))