Class: AArch64::Instructions::STLLR

Inherits:
Object
  • Object
show all
Defined in:
lib/aarch64/instructions/stllr.rb

Overview

STLLR – A64 Store LORelease Register STLLR <Wt>, [<Xn|SP>,,#0] STLLR <Xt>, [<Xn|SP>,,#0]

Instance Method Summary collapse

Constructor Details

#initialize(rt, rn, size) ⇒ STLLR

Returns a new instance of STLLR.



8
9
10
11
12
# File 'lib/aarch64/instructions/stllr.rb', line 8

def initialize rt, rn, size
  @rt   = rt
  @rn   = rn
  @size = size
end

Instance Method Details

#encodeObject



14
15
16
# File 'lib/aarch64/instructions/stllr.rb', line 14

def encode
  STLLR(@size, @rn.to_i, @rt.to_i)
end