# HG changeset patch # User Matti Hamalainen # Date 1589304683 -10800 # Node ID 106f4426c7298d199ea55bafc960d447175f186d # Parent 5fcc9f7b8ad866d92c52461ac507d3e91d1e46f9 List formats without a loading address differently in argShowC64Formats(). diff -r 5fcc9f7b8ad8 -r 106f4426c729 tools/lib64util.c --- a/tools/lib64util.c Tue May 12 20:27:00 2020 +0300 +++ b/tools/lib64util.c Tue May 12 20:31:23 2020 +0300 @@ -255,8 +255,16 @@ if (verbose) { + if (fmt->addr < 0) + { + fprintf(fh, "| %4s ", + fmt->addr == -1 ? "?" : ""); + } + else + { fprintf(fh, "| $%04x ", (uint32_t) fmt->addr); + } if (fmt->size > 0) {