Class: AArch64::Instructions::ASRV
- Inherits:
-
Object
- Object
- AArch64::Instructions::ASRV
- Defined in:
- lib/aarch64/instructions/asrv.rb
Overview
ASRV – A64 Arithmetic Shift Right Variable ASRV <Wd>, <Wn>, <Wm> ASRV <Xd>, <Xn>, <Xm>
Instance Method Summary collapse
- #encode ⇒ Object
-
#initialize(rd, rn, rm, sf) ⇒ ASRV
constructor
A new instance of ASRV.
Constructor Details
#initialize(rd, rn, rm, sf) ⇒ ASRV
Returns a new instance of ASRV.
8 9 10 11 12 13 |
# File 'lib/aarch64/instructions/asrv.rb', line 8 def initialize rd, rn, rm, sf @rd = rd @rn = rn @rm = rm @sf = sf end |
Instance Method Details
#encode ⇒ Object
15 16 17 |
# File 'lib/aarch64/instructions/asrv.rb', line 15 def encode ASRV(@sf, @rm.to_i, @rn.to_i, @rd.to_i) end |