From c54760269bccf75d9f7bfb8048169fd0b4d380c3 Mon Sep 17 00:00:00 2001 From: hummypkg Date: Wed, 18 May 2016 11:12:53 +0100 Subject: [PATCH] Fix MIPS pseudo code for move op. (#4940) --- libr/parse/p/parse_mips_pseudo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libr/parse/p/parse_mips_pseudo.c b/libr/parse/p/parse_mips_pseudo.c index 8dc48c4e38..605e111c57 100644 --- a/libr/parse/p/parse_mips_pseudo.c +++ b/libr/parse/p/parse_mips_pseudo.c @@ -51,7 +51,7 @@ static int replace(int argc, const char *argv[], char *newstr) { { "lw", "1 = halfword [3 + 2]", 3}, { "li", "1 = 2", 2}, { "lui", "1 = 2 << 16", 2}, - { "move", "1 = 2", 1}, + { "move", "1 = 2", 2}, { "mult", "1 = 2 * 3", 3}, { "multu", "1 = 2 * 3", 3}, { "negu", "1 = ~2", 2},