Class: AArch64::Instructions::LDRH_unsigned
- Inherits:
-
Object
- Object
- AArch64::Instructions::LDRH_unsigned
- 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
- #encode ⇒ Object
-
#initialize(rt, rn, imm12) ⇒ LDRH_unsigned
constructor
A new instance of LDRH_unsigned.
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 = rt @rn = rn @imm12 = imm12 end |
Instance Method Details
#encode ⇒ Object
13 14 15 |
# File 'lib/aarch64/instructions/ldrh_unsigned.rb', line 13 def encode LDRH_unsigned(@imm12, @rn.to_i, @rt.to_i) end |