CMPP-encode ( Xm Xn Xd -- ) (original) (raw)
Vocabulary
cpu.arm.64.assembler.opcodes
Inputs
Xm | an object |
---|---|
Xn | an object |
Xd | an object |
Outputs
None
Definition
USING: endian make math.bitwise ;
IN: cpu.arm.64.assembler.opcodes
: CMPP-encode ( Xm Xn Xd -- )
{
{ 1 31 }
{ 0 30 }
{ 1 29 }
{ 214 21 }
{ Xm 16 }
{ 0 15 }
{ 0 14 }
{ 0 13 }
{ 0 12 }
{ 0 11 }
{ 0 10 }
{ Xn 5 }
{ Xd 0 }
} bitfield* 4 >le % ;