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?
Kc,
I would be writing the args to an array then pushing them in reverse order.
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.
Alternatively, you could store the starting point of the stack and go back to that later. :8)