Method: AArch64::Instructions::PACDA#initialize

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

#initialize(rd, rn, z) ⇒ PACDA

Returns a new instance of PACDA.



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

def initialize rd, rn, z
  @rd = check_mask(rd, 0x1f)
  @rn = check_mask(rn, 0x1f)
  @z  = check_mask(z, 0x01)
end