Class: AArch64::Instructions::STZGM
- Inherits:
-
Object
- Object
- AArch64::Instructions::STZGM
- Defined in:
- lib/aarch64/instructions/stzgm.rb
Overview
STZGM – A64 Store Tag and Zero Multiple STZGM <Xt>, [<Xn|SP>]
Instance Method Summary collapse
- #encode ⇒ Object
-
#initialize(rt, rn) ⇒ STZGM
constructor
A new instance of STZGM.
Constructor Details
#initialize(rt, rn) ⇒ STZGM
7 8 9 10 |
# File 'lib/aarch64/instructions/stzgm.rb', line 7 def initialize rt, rn @rt = rt @rn = rn end |
Instance Method Details
#encode ⇒ Object
12 13 14 |
# File 'lib/aarch64/instructions/stzgm.rb', line 12 def encode STZGM(@rn.to_i, @rt.to_i) end |