make asm print labels as `:label ; offset = xx`

This commit is contained in:
Dmitry Petukhov 2019-10-11 12:54:21 +05:00
parent 2ba42c00c1
commit 6469f90d9c
No known key found for this signature in database
GPG Key ID: 2301D26BDC15160D
1 changed files with 1 additions and 1 deletions

View File

@ -621,7 +621,7 @@ void print_text(struct Token* p)
}
else if(':' == p->Text[0])
{
fprintf(stdout, " %x", p->address);
fprintf(stdout, " ; offset = %x", p->address);
}
if((NULL != p->next) && !((p->type & EOL)))