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
9
10
.586
.MODEL FLAT, C
.CODE

__stacker_stack_pointer PROC
    MOV EAX, ESP
    RET
__stacker_stack_pointer ENDP

END