Method: AArch64::Instructions::STNP_gen#initialize
- Defined in:
- lib/aarch64/instructions/stnp_gen.rb
#initialize(rt, rt2, rn, imm7, opc) ⇒ STNP_gen
Returns a new instance of STNP_gen.
8 9 10 11 12 13 14 |
# File 'lib/aarch64/instructions/stnp_gen.rb', line 8 def initialize rt, rt2, rn, imm7, opc @rt = check_mask(rt, 0x1f) @rt2 = check_mask(rt2, 0x1f) @rn = check_mask(rn, 0x1f) @imm7 = check_mask(imm7, 0x7f) @opc = check_mask(opc, 0x03) end |