Skip to content

Commit 995f1c7

Browse files
committed
[FEATURE] Replace rex_jmp with normal JMP instruction
1 parent 5443fc2 commit 995f1c7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

masm_shc/main.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,9 @@ bool process_file(t_params &params)
188188
}
189189
continue;
190190
}
191+
if (tokens[0] == "rex_jmp") {
192+
replace_str(line, "rex_jmp", "JMP");
193+
}
191194
std::string curr_const = get_constant(consts_lines, tokens);
192195
if (params.inlineStrings && curr_const != "") {
193196
//ofile << ";Token found: " << const_name << "\n";

0 commit comments

Comments
 (0)