From f5b5957ff505904fc4888fff3e3d2d405c26772e Mon Sep 17 00:00:00 2001 From: Jean-Marie 'Histausse' Mineau Date: Thu, 8 Feb 2024 14:49:33 +0100 Subject: [PATCH] fix mul-long/2addr serialization --- 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 7d93c24..dc44fef 100644 --- a/androscalpel/src/instructions.rs +++ b/androscalpel/src/instructions.rs @@ -24053,7 +24053,7 @@ impl MulLong2Addr { /// Return the raw instruction ([`InsFormat`]). pub fn get_raw_ins(&self) -> InsFormat { InsFormat::Format12X { - op: 0xbc, + op: 0xbd, va: self.dest, vb: self.b, }