Pop

X = Y; Y = Z; Z = T

Pops all register stack data up one level, resulting in the following copying of data:

Y ==> X

Z ==> Y

T ==> Z

The original contents of X are lost and T is duplicated into Z

See also Push