Method: AArch64::Instructions::XPAC#initialize
- Defined in:
- lib/aarch64/instructions/xpac.rb
#initialize(rd, d) ⇒ XPAC
Returns a new instance of XPAC.
9 10 11 12 |
# File 'lib/aarch64/instructions/xpac.rb', line 9 def initialize rd, d @rd = check_mask(rd, 0x1f) @d = check_mask(d, 0x01) end |