Class: AArch64::Instructions::LDTR

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

Overview

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

Instance Method Summary collapse

Constructor Details

#initialize(rt, rn, imm9, size) ⇒ LDTR

Returns a new instance of LDTR.



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

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

Instance Method Details

#encode(_) ⇒ Object



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

def encode _
  LDTR(@size, @imm9, @rn, @rt)
end