Tested long literals, fixed a dissection bug

This commit is contained in:
2022-08-05 16:47:09 +01:00
parent cd05d5d84a
commit 8f2ba5cd50
2 changed files with 336 additions and 1 deletions

View File

@@ -206,7 +206,7 @@ void dissectBytecode(const char* tb, int size) {
case OP_LITERAL_LONG: {
printf("long literal ");
printByte(tb, &count);
printShort(tb, &count);
printf("\n");
}
break;