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