Class: AArch64::Instructions::CCMN_imm
- Inherits:
-
Instruction
- Object
- Instruction
- AArch64::Instructions::CCMN_imm
- Defined in:
- lib/aarch64/instructions/ccmn_imm.rb
Overview
CCMN (immediate) – A64 Conditional Compare Negative (immediate) CCMN <Wn>, #<imm>, #<nzcv>, <cond> CCMN <Xn>, #<imm>, #<nzcv>, <cond>
Instance Method Summary collapse
- #encode(_) ⇒ Object
-
#initialize(rn, imm, nzcv, cond, sf) ⇒ CCMN_imm
constructor
A new instance of CCMN_imm.
Constructor Details
#initialize(rn, imm, nzcv, cond, sf) ⇒ CCMN_imm
Returns a new instance of CCMN_imm.
8 9 10 11 12 13 14 |
# File 'lib/aarch64/instructions/ccmn_imm.rb', line 8 def initialize rn, imm, nzcv, cond, sf @rn = check_mask(rn, 0x1f) @imm = check_mask(imm, 0x1f) @nzcv = check_mask(nzcv, 0x0f) @cond = check_mask(cond, 0x0f) @sf = check_mask(sf, 0x01) end |
Instance Method Details
#encode(_) ⇒ Object
16 17 18 |
# File 'lib/aarch64/instructions/ccmn_imm.rb', line 16 def encode _ CCMN_imm(@sf, @imm, @cond, @rn, @nzcv) end |