When reading about assembler I often come across people writing that they push a certain register of the processor and pop it again later to restore it’s previous state.
- How can you push a register? Where is it pushed on? Why is this needed?
- Does this boil down to a single processor instruction or is it more complex?
pushing a value (not necessarily stored in a register) means writing it to the stack.
popping means restoring whatever is on top of the stack into a register. Those are basic instructions: