Merge pull request #20 from dgpv/make_asm_print_labels_with_offset_commented

make asm print labels as `:label ; offset = xx`
This commit is contained in:
Jeremiah 2019-10-11 16:44:09 -04:00 committed by GitHub
commit b24e9d3dc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)))