This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Check/locate Stack

Hello,
How is it possible to locate the stack
(both internal and extended).
Whow is it possible to check the size of
allocated memory ?
I would like also to put stack (only) in
extended memory.

Actually I have some problems with
stacks overflow.


Thank you,


Dimitris

  • How is it possible to locate the stack
    (both internal and extended).....
    Actually I have some problems with
    stacks overflow.


    Stack overflow is NOT related to the stack, it is related to the excessive use of variables on DATA and IDATA.
    While there are memory models that will allow you to create a pseudostack in XDATA, you will be far better off moving some of your rarely accessed variables to XDATA.

    Erik