FreeCalypso > hg > freecalypso-hwlab
changeset 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 | 4aaf722ab933 |
children | 5bfb5a7262c1 |
files | simtool/pbdump.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/simtool/pbdump.c Tue Jan 26 01:27:58 2021 +0000 +++ b/simtool/pbdump.c Tue Jan 26 02:52:44 2021 +0000 @@ -102,7 +102,7 @@ if (fixp[12] != 0xFF) fprintf(outf, "CCP=%u ", fixp[12]); if (fixp[13] != 0xFF) - fprintf(outf, "EXT=%u ", fixp[12]); + fprintf(outf, "EXT=%u ", fixp[13]); print_alpha_field(sim_resp_data, textlen, outf); putc('\n', outf); }