From 6ecc34b2c02fa014eff02571c18df6ba3da841af Mon Sep 17 00:00:00 2001 From: Greynad Date: Wed, 21 Sep 2016 16:04:21 +0200 Subject: [PATCH] add support for jb instruction in pseudo asm (#5818) --- libr/parse/p/parse_x86_pseudo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libr/parse/p/parse_x86_pseudo.c b/libr/parse/p/parse_x86_pseudo.c index 9aee884208..32342e86f3 100644 --- a/libr/parse/p/parse_x86_pseudo.c +++ b/libr/parse/p/parse_x86_pseudo.c @@ -55,6 +55,7 @@ static int replace(int argc, const char *argv[], char *newstr) { { "in", "1 = io[2]"}, { "inc", "1++"}, { "ja", "isAbove 1)"}, + { "jb", "isBelow 1)"}, { "jbe", "isBelowOrEqual 1)"}, { "je", "isZero 1)"}, { "jg", "isGreater 1)"},