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