Class: AArch64::Instructions::SUB_addsub_ext

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

Overview

SUB (extended register) – A64 Subtract (extended register) SUB <Wd|WSP>, <Wn|WSP>, <Wm><extend> {#<amount>} SUB <Xd|SP>, <Xn|SP>, <R><m><extend> {#<amount>}

Instance Method Summary collapse

Constructor Details

#initialize(rd, rn, rm, extend, amount, sf) ⇒ SUB_addsub_ext



8
9
10
11
12
13
14
15
# File 'lib/aarch64/instructions/sub_addsub_ext.rb', line 8

def initialize rd, rn, rm, extend, amount, sf
  @rd     = rd
  @rn     = rn
  @rm     = rm
  @extend = extend
  @amount = amount
  @sf     = sf
end

Instance Method Details

#encodeObject



17
18
19
# File 'lib/aarch64/instructions/sub_addsub_ext.rb', line 17

def encode
  SUB_addsub_ext(@sf, @rm.to_i, @extend, @amount, @rn.to_i, @rd.to_i)
end