Class: AArch64::Instructions::ADDS_addsub_ext
- Inherits:
-
Object
- Object
- AArch64::Instructions::ADDS_addsub_ext
- Defined in:
- lib/aarch64/instructions/adds_addsub_ext.rb
Overview
ADDS (extended register) – A64 Add (extended register), setting flags ADDS <Wd>, <Wn|WSP>, <Wm><extend> {#<amount>} ADDS <Xd>, <Xn|SP>, <R><m><extend> {#<amount>}
Instance Method Summary collapse
- #encode ⇒ Object
-
#initialize(d, n, m, extend, amount, sf) ⇒ ADDS_addsub_ext
constructor
A new instance of ADDS_addsub_ext.
Constructor Details
#initialize(d, n, m, extend, amount, sf) ⇒ ADDS_addsub_ext
Returns a new instance of ADDS_addsub_ext.
8 9 10 11 12 13 14 15 |
# File 'lib/aarch64/instructions/adds_addsub_ext.rb', line 8 def initialize d, n, m, extend, amount, sf @d = d @n = n @m = m @extend = extend @amount = amount @sf = sf end |
Instance Method Details
#encode ⇒ Object
17 18 19 |
# File 'lib/aarch64/instructions/adds_addsub_ext.rb', line 17 def encode ADDS_addsub_ext(@sf, @m.to_i, @extend, @amount, @n.to_i, @d.to_i) end |