Hi,
I'm currently trying to understand how the stack works, so I've decided teach myself some Assembly assembly language, I'm using this book:
http://savannah.nongnu.org/projects/pgubook/
I'm using the Gasassembler and doing my development on mint linuxLinux Mint.
I'm a bit confused by something:
As far as I was aware a stack is simply a data structure. So I assumed if I was coding in Assembly language assembly I'd have to implement the stack myself. However this doesn't seem to be the case as there are commands like
pushl
popl
So when coding in assembly for the x86 architecture and using the Gas assembler / syntax: is the stack just a data structure thats that's already implmentedimplemented? Or is it actually implemented at the hardware level?! level? Or is it something else? Also would most assembly languages for other chip sets have the stack already implemented.?
I know this is a bit of a dumbass foolish question but I'm actually quite confused by this.
Thanks in advance for any help!
