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