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