hex.sp_sub¶
Effectively: sp -= value
Signature¶
def sp_sub value < hex.pointers.sp { ... }
Defined in hex/pointers/stack.fj — lines 29–31 (view on GitHub).
Complexity¶
Time:
13@+35Space:
w(0.375@ + 3.25) + 7.5@+106
See the complexity glossary for what @, w, dw, dbit, n mean.
Source¶
Click to view the macro body
def sp_sub value < hex.pointers.sp {
.ptr_sub hex.pointers.sp, value
}
Depends on¶
Used by¶
Example uses¶
stl.callinptrlib.fj
← Previous: hex.sp_add
Next: hex.push_ret_address →