Class: AArch64::Instructions::LDTRH
- Inherits:
-
Object
- Object
- AArch64::Instructions::LDTRH
- Defined in:
- lib/aarch64/instructions/ldtrh.rb
Overview
LDTRH – A64 Load Register Halfword (unprivileged) LDTRH <Wt>, [<Xn|SP>#<simm>]
Instance Method Summary collapse
- #encode ⇒ Object
-
#initialize(rt, rn, imm9) ⇒ LDTRH
constructor
A new instance of LDTRH.
Constructor Details
#initialize(rt, rn, imm9) ⇒ LDTRH
Returns a new instance of LDTRH.
7 8 9 10 11 |
# File 'lib/aarch64/instructions/ldtrh.rb', line 7 def initialize rt, rn, imm9 @rt = rt @rn = rn @imm9 = imm9 end |
Instance Method Details
#encode ⇒ Object
13 14 15 |
# File 'lib/aarch64/instructions/ldtrh.rb', line 13 def encode LDTRH(@imm9, @rn.to_i, @rt.to_i) end |