Class: AArch64::Instructions::STRB_imm_unsigned
- Inherits:
-
Object
- Object
- AArch64::Instructions::STRB_imm_unsigned
- Defined in:
- lib/aarch64/instructions/strb_imm_unsigned.rb
Overview
STRB (immediate) – A64 Store Register Byte (immediate) STRB <Wt>, [<Xn|SP>#<pimm>]
Instance Method Summary collapse
- #encode ⇒ Object
-
#initialize(rt, rn, imm12) ⇒ STRB_imm_unsigned
constructor
A new instance of STRB_imm_unsigned.
Constructor Details
#initialize(rt, rn, imm12) ⇒ STRB_imm_unsigned
Returns a new instance of STRB_imm_unsigned.
7 8 9 10 11 |
# File 'lib/aarch64/instructions/strb_imm_unsigned.rb', line 7 def initialize rt, rn, imm12 @rt = rt @rn = rn @imm12 = imm12 end |
Instance Method Details
#encode ⇒ Object
13 14 15 |
# File 'lib/aarch64/instructions/strb_imm_unsigned.rb', line 13 def encode STRB_imm_unsigned(@imm12, @rn.to_i, @rt.to_i) end |