swap JEZ & JNZ behaviors

This commit is contained in:
KikooDX 2021-08-20 14:23:56 +02:00
parent 20ff035b85
commit 924f3fa4ef
1 changed files with 2 additions and 2 deletions

View File

@ -100,12 +100,12 @@ parse(char *path)
else if (strcmp(token, "JEZ") == 0)
{
op1 = get_op(1);
printf("Ans=>Goto %s\n", op1);
printf("Ans=0=>Goto %s\n", op1);
}
else if (strcmp(token, "JNZ") == 0)
{
op1 = get_op(1);
printf("Ans=0=>Goto %s\n", op1);
printf("Ans=>Goto %s\n", op1);
}
else if (strcmp(token, "JMZ") == 0)
{