CCMPr-encode ( bw Rm cond4 Rn nzcv -- ) (original) (raw)

CCMPr-encode ( bw Rm cond4 Rn nzcv -- )

Vocabulary
cpu.arm.64.assembler.opcodes

Inputs

bw an object
Rm an object
cond4 an object
Rn an object
nzcv an object

Outputs
None

Definition

USING: endian make math.bitwise ;

IN: cpu.arm.64.assembler.opcodes

: CCMPr-encode ( bw Rm cond4 Rn nzcv -- )
{
{ bw 31 }
{ 1 30 }
{ 1 29 }
{ 210 21 }
{ Rm 16 }
{ cond4 12 }
{ 0 11 }
{ 0 10 }
{ Rn 5 }
{ 0 4 }
{ nzcv 0 }
} bitfield* 4 >le % ;