Class: AArch64::Instructions::LDUMINH
- Inherits:
-
Object
- Object
- AArch64::Instructions::LDUMINH
- Defined in:
- lib/aarch64/instructions/lduminh.rb
Overview
LDUMINH, LDUMINAH, LDUMINALH, LDUMINLH – A64 Atomic unsigned minimum on halfword in memory LDUMINAH <Ws>, <Wt>, [<Xn|SP>] LDUMINALH <Ws>, <Wt>, [<Xn|SP>] LDUMINH <Ws>, <Wt>, [<Xn|SP>] LDUMINLH <Ws>, <Wt>, [<Xn|SP>]
Instance Method Summary collapse
- #encode ⇒ Object
-
#initialize(rs, rt, rn, a, r) ⇒ LDUMINH
constructor
A new instance of LDUMINH.
Constructor Details
#initialize(rs, rt, rn, a, r) ⇒ LDUMINH
Returns a new instance of LDUMINH.
10 11 12 13 14 15 16 |
# File 'lib/aarch64/instructions/lduminh.rb', line 10 def initialize rs, rt, rn, a, r @rs = rs @rt = rt @rn = rn @a = a @r = r end |
Instance Method Details
#encode ⇒ Object
18 19 20 |
# File 'lib/aarch64/instructions/lduminh.rb', line 18 def encode LDUMINH(@a, @r.to_i, @rs.to_i, @rn.to_i, @rt.to_i) end |