Class: AArch64::Instructions::LDTRSB

Inherits:
Instruction show all
Defined in:
lib/aarch64/instructions/ldtrsb.rb

Overview

LDTRSB – A64 Load Register Signed Byte (unprivileged) LDTRSB <Wt>, [<Xn|SP>#<simm>] LDTRSB <Xt>, [<Xn|SP>#<simm>]

Instance Method Summary collapse

Constructor Details

#initialize(rt, rn, imm9, opc) ⇒ LDTRSB

Returns a new instance of LDTRSB.



8
9
10
11
12
13
# File 'lib/aarch64/instructions/ldtrsb.rb', line 8

def initialize rt, rn, imm9, opc
  @rt   = check_mask(rt, 0x1f)
  @rn   = check_mask(rn, 0x1f)
  @imm9 = check_mask(imm9, 0x1ff)
  @opc  = check_mask(opc, 0x03)
end

Instance Method Details

#encode(_) ⇒ Object



15
16
17
# File 'lib/aarch64/instructions/ldtrsb.rb', line 15

def encode _
  LDTRSB(@opc, @imm9, @rn, @rt)
end