FreeCalypso > hg > freecalypso-hwlab
comparison simtool/pbdump.c @ 110:a6de34816297
fc-simtool: EXT field handling bugfix in pb-dump
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 26 Jan 2021 02:52:44 +0000 |
parents | 66f04193a906 |
children | f18704e91393 |
comparison
equal
deleted
inserted
replaced
109:4aaf722ab933 | 110:a6de34816297 |
---|---|
100 /* all checks passed */ | 100 /* all checks passed */ |
101 fprintf(outf, "%s,0x%02X ", digits, fixp[1]); | 101 fprintf(outf, "%s,0x%02X ", digits, fixp[1]); |
102 if (fixp[12] != 0xFF) | 102 if (fixp[12] != 0xFF) |
103 fprintf(outf, "CCP=%u ", fixp[12]); | 103 fprintf(outf, "CCP=%u ", fixp[12]); |
104 if (fixp[13] != 0xFF) | 104 if (fixp[13] != 0xFF) |
105 fprintf(outf, "EXT=%u ", fixp[12]); | 105 fprintf(outf, "EXT=%u ", fixp[13]); |
106 print_alpha_field(sim_resp_data, textlen, outf); | 106 print_alpha_field(sim_resp_data, textlen, outf); |
107 putc('\n', outf); | 107 putc('\n', outf); |
108 } | 108 } |
109 | 109 |
110 cmd_pb_dump(argc, argv) | 110 cmd_pb_dump(argc, argv) |