microx icon indicating copy to clipboard operation
microx copied to clipboard

Bug in pop rsp

Open lkorenc opened this issue 4 years ago • 0 comments

pop rsp currently returns result increased by 8 opposed to expected value. One possible explanation is that following happens:

new = *rsp
store(dst, new)
*rsp = *rsp + 8

instead of

new = *rsp
*rsp = *rsp + 8
store(dst, new)

lkorenc avatar Sep 25 '21 16:09 lkorenc