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