Method: AArch64::Instructions::ST64B#initialize

Defined in:
lib/aarch64/instructions/st64b.rb

#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 = check_mask(rt, 0x1f)
  @rn = check_mask(rn, 0x1f)
end