Skip to content
Snippets Groups Projects
Commit a437d8f9 authored by deuce's avatar deuce
Browse files

Add missing USER_EVENT call

parent 5f582e50
Branches
Tags
No related merge requests found
......@@ -1649,6 +1649,15 @@ void decompile(FILE *bin, FILE *src)
CH("COMPARE_CHAR");
case CS_MULTINODE_CHAT:
MUCH("MULTINODE_CHAT");
case CS_TWO_MORE_BYTES:
fread(&uch,1,1,bin);
switch(uch) {
case CS_USER_EVENT:
MUCH("USER_EVENT");
default:
printf("ERROR! Unknown two-byte instruction: %02x%02X\n",CS_ONE_MORE_BYTE,uch);
}
break;
case CS_GOTO:
fread(&ush,2,1,bin);
fprintf(src,"GOTO label_%04x ",ush);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment