Class: AArch64::Instructions::ADCS
- Inherits:
-
Instruction
- Object
- Instruction
- AArch64::Instructions::ADCS
- Defined in:
- lib/aarch64/instructions/adcs.rb
Overview
ADCS – A64 Add with Carry, setting flags ADCS <Wd>, <Wn>, <Wm>
Instance Method Summary collapse
- #encode(_) ⇒ Object
-
#initialize(rd, rn, rm, sf) ⇒ ADCS
constructor
A new instance of ADCS.
Constructor Details
#initialize(rd, rn, rm, sf) ⇒ ADCS
Returns a new instance of ADCS.
7 8 9 10 11 12 |
# File 'lib/aarch64/instructions/adcs.rb', line 7 def initialize rd, rn, rm, sf @rd = check_mask(rd, 0x1f) @rn = check_mask(rn, 0x1f) @rm = check_mask(rm, 0x1f) @sf = check_mask(sf, 0x01) end |
Instance Method Details
#encode(_) ⇒ Object
14 15 16 |
# File 'lib/aarch64/instructions/adcs.rb', line 14 def encode _ ADCS(@sf, @rm, @rn, @rd) end |