Class: AArch64::Instructions::UMADDL
- Inherits:
-
Object
- Object
- AArch64::Instructions::UMADDL
- Defined in:
- lib/aarch64/instructions/umaddl.rb
Overview
UMADDL – A64 Unsigned Multiply-Add Long UMADDL <Xd>, <Wn>, <Wm>, <Xa>
Instance Method Summary collapse
- #encode ⇒ Object
-
#initialize(xd, wn, wm, xa) ⇒ UMADDL
constructor
A new instance of UMADDL.
Constructor Details
#initialize(xd, wn, wm, xa) ⇒ UMADDL
Returns a new instance of UMADDL.
7 8 9 10 11 12 |
# File 'lib/aarch64/instructions/umaddl.rb', line 7 def initialize xd, wn, wm, xa @xd = xd @wn = wn @wm = wm @xa = xa end |
Instance Method Details
#encode ⇒ Object
14 15 16 |
# File 'lib/aarch64/instructions/umaddl.rb', line 14 def encode UMADDL(@wm.to_i, @xa.to_i, @wn.to_i, @xd.to_i) end |