| |||
| Home > Directives Reference > Frame directives > FRAME RESTORE | |||
Use the FRAME RESTORE directive to inform the
assembler that the contents of specified registers have been restored
to the values they had on entry to the function. You can only use
it within functions with FUNCTION and ENDFUNC or PROC and ENDP directives.
FRAME RESTORE{reglist}
where:
reglistis a list of registers whose contents have been restored. There must be at least one register in the list.
Use FRAME RESTORE immediately after the callee
reloads registers from the stack. You do not have to do this after
the last instruction in a function.
can
contain integer registers or floating-point registers, but not both.reglist
If your code uses a single instruction to load registers and
alter the stack pointer, you can use FRAME POP instead
of using both FRAME RESTORE and FRAME ADDRESS (see FRAME POP).