i need to implement a stack in x86 assembly so i wrote this:
section .bss
my_stack:
resb 5
but the data inside this address disappear after i continuing with my program
there is a better way i can implement the stack?????
|
|
|||||
|
|
|
I'm not sure what you want, but as the x86 assembly language provides it's own stack, why not use it?
By the way, your code only reserves 5 bytes of space for variables, to see why your data disappears, the rest of the program would be interesting. Using only 5 bytes for a stack is strange, too. |
||
|
|
|
|
Here is a simple example of how you can create your own stack in x86 asm:
I've used FASM syntax here but that shouldn't be a problem. Also i would suggest to allocate the stack in memory, e.g. using VirtualAlloc. |
||
|
|
|
|
To use your stack you have to set ss:sp properly if you are in 16-bit, otherwise (ss):esp. The preferred way to set ss:sp is the LSS instruction which loads ss and sp in the same instruction.
|
||
|