• 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
        • Kit
          • Vl-lint
          • Vl-server
          • Vl-gather
          • Vl-zip
          • Vl-main
            • Vl-toolkit-other-command
              • Vl-toolkit-other-command-default
              • Vl-help
            • Split-plusargs
            • Vl-shell
            • Vl-json
          • Mlib
          • Transforms
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Testing-utilities
      • Math
    • Vl-toolkit-other-command

    Vl-toolkit-other-command-default

    Signature
    (vl-toolkit-other-command-default command args state) → state
    Arguments
    command — Guard (stringp command).
    args — Guard (string-listp args).

    Definitions and Theorems

    Function: vl-toolkit-other-command-default

    (defun vl-toolkit-other-command-default
           (command args state)
           (declare (xargs :stobjs (state)))
           (declare (xargs :guard (and (stringp command)
                                       (string-listp args))))
           (let ((__function__ 'vl-toolkit-other-command-default))
                (declare (ignorable __function__))
                (progn$ (die "Unknown command ~s0.~%" command)
                        state)))