Class: AArch64::Instructions::ADCS

Inherits:
Object
  • Object
show all
Defined in:
lib/aarch64/instructions/adcs.rb

Overview

ADCS – A64 Add with Carry, setting flags ADCS <Wd>, <Wn>, <Wm>

Instance Method Summary collapse

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 = rd
  @rn = rn
  @rm = rm
  @sf = sf
end

Instance Method Details

#encodeObject



14
15
16
# File 'lib/aarch64/instructions/adcs.rb', line 14

def encode
  ADCS(@sf, @rm.to_i, @rn.to_i, @rd.to_i)
end