LDPSWsoff-encode ( imm7 Rt2 Rn Rt -- ) (original) (raw)
LDPSWsoff-encode ( imm7 Rt2 Rn Rt -- )
Vocabulary
cpu.arm.64.assembler.opcodes
Inputs
imm7 | an object |
---|---|
Rt2 | an object |
Rn | an object |
Rt | an object |
Outputs
None
Definition
USING: endian make math.bitwise ;
IN: cpu.arm.64.assembler.opcodes
: LDPSWsoff-encode ( imm7 Rt2 Rn Rt -- )
{
{ 1 30 }
{ 5 27 }
{ 0 26 }
{ 2 23 }
{ 1 22 }
{ imm7 15 }
{ Rt2 10 }
{ Rn 5 }
{ Rt 0 }
} bitfield* 4 >le % ;