Skip to content

Commit

Permalink
fixes #149
Browse files Browse the repository at this point in the history
  • Loading branch information
thrust26 committed Nov 25, 2024
1 parent f16f1c9 commit 16a0c61
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/ops.c
Original file line number Diff line number Diff line change
Expand Up @@ -1102,8 +1102,9 @@ v_equ(char *str, MNEMONIC *dummy)
if (lab->value != sym->value)
{
asmerr( ERROR_EQU_VALUE_MISMATCH, false, NULL );
printf("INFO: Label '%s' changed from $%04lx to $%04lx\n",
Av[0], lab->value, sym->value);
if ( bTrace )
printf("INFO: Label '%s' changed from $%04lx to $%04lx\n",
Av[0], lab->value, sym->value);
++Redo;
Redo_why |= REASON_EQU_VALUE_MISMATCH;
}
Expand Down

0 comments on commit 16a0c61

Please sign in to comment.