SCVTFsi-encode ( bw ftype Rn Rd -- ) (original) (raw)
SCVTFsi-encode ( bw ftype Rn Rd -- )
Vocabulary
cpu.arm.64.assembler.opcodes
Inputs
bw | an object |
---|---|
ftype | an object |
Rn | an object |
Rd | an object |
Outputs
None
Definition
USING: endian make math.bitwise ;
IN: cpu.arm.64.assembler.opcodes
: SCVTFsi-encode ( bw ftype Rn Rd -- )
{
{ bw 31 }
{ 0 30 }
{ 0 29 }
{ 30 24 }
{ ftype 22 }
{ 1 21 }
{ 0 19 }
{ 2 16 }
{ 0 10 }
{ Rn 5 }
{ Rd 0 }
} bitfield* 4 >le % ;