CSET-encode ( bw cond4 Rd -- ) (original) (raw)
CSET-encode ( bw cond4 Rd -- )
Vocabulary
cpu.arm.64.assembler.opcodes
Inputs
bw | an object |
---|---|
cond4 | an object |
Rd | an object |
Outputs
None
Definition
USING: endian make math.bitwise ;
IN: cpu.arm.64.assembler.opcodes
: CSET-encode ( bw cond4 Rd -- )
{
{ bw 31 }
{ 0 30 }
{ 0 29 }
{ 212 21 }
{ 31 16 }
{ cond4 12 }
{ 0 11 }
{ 1 10 }
{ 31 5 }
{ Rd 0 }
} bitfield* 4 >le % ;