Complete 8086 instruction set
[POP]
POP
Operands: REG SREG memory Get 16 bit value from the stack. Algorithm: operand = SS:[SP] (top of the stack) SP = SP + 2 Example: MOV AX, 1234h PUSH AX POP DX ; DX = 1234h RET Flags: C Z S O P A
unchanged