CINC-encode ( bw Rm cond4 Rn Rd -- ) (original) (raw)

CINC-encode ( bw Rm cond4 Rn Rd -- )

Vocabulary
cpu.arm.64.assembler.opcodes

Inputs

bw an object
Rm an object
cond4 an object
Rn an object
Rd an object

Outputs
None

Definition

USING: endian make math.bitwise ;

IN: cpu.arm.64.assembler.opcodes

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