Modifying constructor for stat32i structures.
(change-stat32i x [:xregs <xregs>] [:pc <pc>] [:memory <memory>] [:error <error>])
This is an often useful alternative to make-stat32i.
We construct a new stat32i structure that is a copy of
This is an ordinary
Macro:
(defmacro change-stat32i (x &rest args) (std::change-aggregate 'stat32i x args '((:xregs . stat32i->xregs) (:pc . stat32i->pc) (:memory . stat32i->memory) (:error . stat32i->error)) 'change-stat32i 'nil))