Class: AArch64::Instructions::LDSETB
- Inherits:
-
Instruction
- Object
- Instruction
- AArch64::Instructions::LDSETB
- Defined in:
- lib/aarch64/instructions/ldsetb.rb
Overview
LDSETB, LDSETAB, LDSETALB, LDSETLB – A64 Atomic bit set on byte in memory LDSETAB <Ws>, <Wt>, [<Xn|SP>] LDSETALB <Ws>, <Wt>, [<Xn|SP>] LDSETB <Ws>, <Wt>, [<Xn|SP>] LDSETLB <Ws>, <Wt>, [<Xn|SP>]
Instance Method Summary collapse
- #encode(_) ⇒ Object
-
#initialize(rs, rt, rn, a, r) ⇒ LDSETB
constructor
A new instance of LDSETB.
Constructor Details
#initialize(rs, rt, rn, a, r) ⇒ LDSETB
Returns a new instance of LDSETB.
10 11 12 13 14 15 16 |
# File 'lib/aarch64/instructions/ldsetb.rb', line 10 def initialize rs, rt, rn, a, r @rs = check_mask(rs, 0x1f) @rt = check_mask(rt, 0x1f) @rn = check_mask(rn, 0x1f) @a = check_mask(a, 0x01) @r = check_mask(r, 0x01) end |
Instance Method Details
#encode(_) ⇒ Object
18 19 20 |
# File 'lib/aarch64/instructions/ldsetb.rb', line 18 def encode _ LDSETB(@a, @r, @rs, @rn, @rt) end |