Class: AArch64::Instructions::LDRH_unsigned

Inherits:
Instruction
  • Object
show all
Defined in:
lib/aarch64/instructions/ldrh_unsigned.rb

Overview

LDRH (immediate) – A64 Load Register Halfword (immediate) LDRH <Wt>, [<Xn|SP>#<pimm>]

Instance Method Summary collapse

Constructor Details

#initialize(rt, rn, imm12) ⇒ LDRH_unsigned

Returns a new instance of LDRH_unsigned.



7
8
9
10
11
# File 'lib/aarch64/instructions/ldrh_unsigned.rb', line 7

def initialize rt, rn, imm12
  @rt    = check_mask(rt, 0x1f)
  @rn    = check_mask(rn, 0x1f)
  @imm12 = check_mask(imm12, 0xfff)
end

Instance Method Details

#encode(_) ⇒ Object



13
14
15
# File 'lib/aarch64/instructions/ldrh_unsigned.rb', line 13

def encode _
  LDRH_unsigned(@imm12, @rn, @rt)
end