if i move a value to a memory under the stack pointer, will it vanish? Like:
mov [rsp-8], 9
will 9
gone even if i don't use call
or push
or any other instruction that affects the stack?
if i move a value to a memory under the stack pointer, will it vanish? Like:
mov [rsp-8], 9
will 9
gone even if i don't use call
or push
or any other instruction that affects the stack?