Class: AArch64::Instructions::ST64B

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

Overview

ST64B – A64 Single-copy Atomic 64-byte Store without Return ST64B <Xt>, [<Xn|SP> ,,#0]

Instance Method Summary collapse

Constructor Details

#initialize(rt, rn) ⇒ ST64B

Returns a new instance of ST64B.



7
8
9
10
# File 'lib/aarch64/instructions/st64b.rb', line 7

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

Instance Method Details

#encodeObject



12
13
14
# File 'lib/aarch64/instructions/st64b.rb', line 12

def encode
  ST64B(@rn.to_i, @rt.to_i)
end