Modifying constructor for vl-modport structures.
(change-vl-modport x [:name <name>] [:loc <loc>] [:ports <ports>] [:atts <atts>])
This is an often useful alternative to make-vl-modport.
We construct a new vl-modport structure that is a copy of
This is an ordinary
Macro:
(defmacro change-vl-modport (x &rest args) (std::change-aggregate 'vl-modport x args '((:name . vl-modport->name) (:loc . vl-modport->loc) (:ports . vl-modport->ports) (:atts . vl-modport->atts)) 'change-vl-modport 'nil))