Handbook
Glossary
two-operand ( dst src1 src2 rep -- dst src )
Vocabulary
cpu
.
x86
Inputs
dst
an
object
src1
an
object
src2
an
object
rep
an
object
Outputs
dst
an
object
src
an
object
Definition
USING:
cpu.architecture
kernel
;
IN:
cpu.x86
::
two-operand
( dst src1 src2 rep -- dst src )
dst src2
eq?
dst src1
eq?
not
and
[
"Cannot handle this case"
throw
]
when
dst src1 rep
%copy
dst src2
;
inline