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