stacker 0.1.4

A stack growth library useful when implementing deeply recursive algorithms that may accidentally blow the stack.
Documentation
1
2
3
4
5
6
7
8
_text SEGMENT

__stacker_stack_pointer PROC
    MOV RAX, RSP
    RET
__stacker_stack_pointer ENDP

END