Class: AArch64::Instructions::ERETA
- Inherits:
-
Instruction
- Object
- Instruction
- AArch64::Instructions::ERETA
- Defined in:
- lib/aarch64/instructions/ereta.rb
Overview
ERETAA, ERETAB – A64 Exception Return, with pointer authentication ERETAA ERETAB
Instance Method Summary collapse
- #encode(_) ⇒ Object
-
#initialize(m) ⇒ ERETA
constructor
A new instance of ERETA.
Constructor Details
#initialize(m) ⇒ ERETA
Returns a new instance of ERETA.
8 9 10 |
# File 'lib/aarch64/instructions/ereta.rb', line 8 def initialize m @m = check_mask(m, 0x01) end |
Instance Method Details
#encode(_) ⇒ Object
12 13 14 |
# File 'lib/aarch64/instructions/ereta.rb', line 12 def encode _ ERETA(@m) end |