Class: AArch64::Instructions::LDGM
- Inherits:
-
Instruction
- Object
- Instruction
- AArch64::Instructions::LDGM
- Defined in:
- lib/aarch64/instructions/ldgm.rb
Overview
LDGM – A64 Load Tag Multiple LDGM <Xt>, [<Xn|SP>]
Instance Method Summary collapse
- #encode(_) ⇒ Object
-
#initialize(xt, xn) ⇒ LDGM
constructor
A new instance of LDGM.
Constructor Details
#initialize(xt, xn) ⇒ LDGM
Returns a new instance of LDGM.
7 8 9 10 |
# File 'lib/aarch64/instructions/ldgm.rb', line 7 def initialize xt, xn @xt = check_mask(xt, 0x1f) @xn = check_mask(xn, 0x1f) end |
Instance Method Details
#encode(_) ⇒ Object
12 13 14 |
# File 'lib/aarch64/instructions/ldgm.rb', line 12 def encode _ LDGM(@xn, @xt) end |