Add a missed opcode conversion for %%

This commit is contained in:
Bill Currie 2020-02-16 12:10:09 +09:00
parent 32c21ec559
commit 1a9510834a

View file

@ -439,6 +439,7 @@ convert_op (int op)
case '*': return "*";
case '/': return "/";
case '%': return "%";
case MOD: return "%%";
case '&': return "&";
case '|': return "|";
case '^': return "^";