Method: AArch64::Instructions::PACIB#initialize

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

#initialize(rd, rn, z) ⇒ PACIB

Returns a new instance of PACIB.



11
12
13
14
15
# File 'lib/aarch64/instructions/pacib.rb', line 11

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