Class: AArch64::Instructions::LDAR
- Inherits:
-
Instruction
- Object
- Instruction
- AArch64::Instructions::LDAR
- Defined in:
- lib/aarch64/instructions/ldar.rb
Overview
LDAR – A64 Load-Acquire Register LDAR <Wt>, [<Xn|SP>,,#0] LDAR <Xt>, [<Xn|SP>,,#0]
Instance Method Summary collapse
- #encode(_) ⇒ Object
-
#initialize(rt, rn, size) ⇒ LDAR
constructor
A new instance of LDAR.
Constructor Details
#initialize(rt, rn, size) ⇒ LDAR
Returns a new instance of LDAR.
8 9 10 11 12 |
# File 'lib/aarch64/instructions/ldar.rb', line 8 def initialize rt, rn, size @rt = check_mask(rt, 0x1f) @rn = check_mask(rn, 0x1f) @size = check_mask(size, 0x03) end |
Instance Method Details
#encode(_) ⇒ Object
14 15 16 |
# File 'lib/aarch64/instructions/ldar.rb', line 14 def encode _ LDAR(@size, @rn, @rt) end |