• Top
    • Documentation
    • Books
    • Recursion-and-induction
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Vwsim
      • 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-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))))