From e80eaebe16b36f2b56b050a4fd2ccd42c363307d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Thu, 31 Dec 2020 17:19:26 +0100 Subject: [PATCH] special instructions update [ci skip] --- FAQ.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/FAQ.md b/FAQ.md index 2e5f4d0db..5d15a49b5 100644 --- a/FAQ.md +++ b/FAQ.md @@ -26,9 +26,11 @@ A) Variable identifiers which have invalid characters in their name are displaye This allows easier direct editation. B) Also, there exist few special instructions/functions with prefix §§: -- `§§push(item)` -- `§§pop()` -- `§§dup()` -- `§§goto(label)` +- `§§push(item)` - pushes item on stack +- `§§pop()` - pops from stack +- `§§dup()` - duplicates value on stack +- `§§goto(label)` - jump to address +- `§§constant(number)` - unresolved constant (unknown constantpool) These functions usually pop out when you try to decompile some obfuscated / unstructured code. +You can try Settings/Automatic deobfuscation option for handle some kinds of this code properly.