Method: AArch64::Instructions::STLR#initialize
- Defined in:
- lib/aarch64/instructions/stlr.rb
#initialize(rt, rn, size) ⇒ STLR
Returns a new instance of STLR.
8 9 10 11 12 |
# File 'lib/aarch64/instructions/stlr.rb', line 8 def initialize rt, rn, size @rt = check_mask(rt, 0x1f) @rn = check_mask(rn, 0x1f) @size = check_mask(size, 0x03) end |