The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: KcDan on November 11, 2005, 02:05:50 PM

Title: Stack Problems: Reversing part of the stack.
Post by: KcDan on November 11, 2005, 02:05:50 PM
For my compiler when Im parsing string expressions I allow the '+' operator to add strings together. When Im parsing these strings Im pushing the address of the just done string and then continuing on to the next string that is after the '+' operator. When Im all done all the address's are pushed on the stack but what I want to do is reverse the order of them.

So stack looks like this
1000
2000
3000
4000

But I want it to look like this
4000
3000
2000
1000

Any ideas?
Title: Re: Stack Problems: Reversing part of the stack.
Post by: hutch-- on November 11, 2005, 02:31:23 PM
Kc,

I would be writing the args to an array then pushing them in reverse order.
Title: Re: Stack Problems: Reversing part of the stack.
Post by: KcDan on November 11, 2005, 02:52:23 PM
Quote from: hutch-- on November 11, 2005, 02:31:23 PM
Kc,

I would be writing the args to an array then pushing them in reverse order.
>_< Thanks,. I dont know why I didnt try this in the first place.
Title: Re: Stack Problems: Reversing part of the stack.
Post by: zooba on November 14, 2005, 07:07:53 AM
Alternatively, you could store the starting point of the stack and go back to that later. :8)