• 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
        • Kit
          • Vl-lint
          • Vl-server
          • Vl-gather
          • Vl-zip
            • Vl-zip-opts-p
            • Vl-zipfile
              • Vl-zipfile-fix
              • Vl-read-zip-header
              • Vl-maybe-zipfile
              • Vl-read-zip
              • Make-vl-zipfile
              • Vl-zipfile-equiv
              • Vl-zipfile-p
              • Change-vl-zipfile
                • Vl-zipfile->syntax
                • Vl-zipfile->filemap
                • Vl-zipfile->design
                • Vl-zipfile->defines
                • Vl-zipfile->name
                • Vl-zipfile->ltime
                • Vl-zipfile->date
                • Vl-write-zip
              • *vl-zip-help*
              • Vl-zip-top
              • Vl-zip-main
            • Vl-main
            • Split-plusargs
            • Vl-shell
            • Vl-json
          • Mlib
          • Transforms
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-zipfile

    Change-vl-zipfile

    Modifying constructor for vl-zipfile structures.

    Syntax
    (change-vl-zipfile x 
                       [:name <name>] 
                       [:syntax <syntax>] 
                       [:date <date>] 
                       [:ltime <ltime>] 
                       [:design <design>] 
                       [:filemap <filemap>] 
                       [:defines <defines>]) 
    

    This is an often useful alternative to make-vl-zipfile.

    We construct a new vl-zipfile structure that is a copy of x, except that you can explicitly change some particular fields. Any fields you don't mention just keep their values from x.

    Definition

    This is an ordinary change- macro introduced by defprod.

    Macro: change-vl-zipfile

    (defmacro change-vl-zipfile (x &rest args)
      (std::change-aggregate 'vl-zipfile
                             x args
                             '((:name . vl-zipfile->name)
                               (:syntax . vl-zipfile->syntax)
                               (:date . vl-zipfile->date)
                               (:ltime . vl-zipfile->ltime)
                               (:design . vl-zipfile->design)
                               (:filemap . vl-zipfile->filemap)
                               (:defines . vl-zipfile->defines))
                             'change-vl-zipfile
                             'nil))