From 53457cbb97eba87f1df80e271e113209076fb5e4 Mon Sep 17 00:00:00 2001 From: Jean-Marie 'Histausse' Mineau Date: Sat, 27 Jan 2024 01:06:09 +0100 Subject: [PATCH] fix throws opcode --- androscalpel/src/instructions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/androscalpel/src/instructions.rs b/androscalpel/src/instructions.rs index d3888f6..1addbc5 100644 --- a/androscalpel/src/instructions.rs +++ b/androscalpel/src/instructions.rs @@ -6769,7 +6769,7 @@ impl Throw { /// Return the raw instruction ([`InsFormat`]). pub fn get_raw_ins(&self) -> InsFormat { InsFormat::Format11X { - op: 0x26, + op: 0x27, va: self.reg, } }