1
0
mirror of https://github.com/open-simh/simh.git synced 2026-03-13 14:01:00 +00:00

PDP11, VAX, VAX780: Cleanup format of conflict error messages

This commit is contained in:
Bob Supnik
2022-05-16 05:21:42 -07:00
committed by Mark Pizzolato
parent c744b3ee06
commit 80ed10e9a2

View File

@@ -300,11 +300,13 @@ for (i = 0; i < (int32) dibp->lnt; i = i + 2) { /* create entries */
(iodispR[idx] != dibp->rd)) ||
(iodispW[idx] && dibp->wr &&
(iodispW[idx] != dibp->wr))) {
printf ("Device %s address conflict at \n", sim_dname (dptr));
printf ("Device %s address conflict at ", sim_dname (dptr));
fprint_val (stdout, (t_value) dibp->ba, DEV_RDX, 32, PV_LEFT);
printf ("\n");
if (sim_log) {
fprintf (sim_log, "Device %s address conflict at \n", sim_dname (dptr));
fprintf (sim_log, "Device %s address conflict at ", sim_dname (dptr));
fprint_val (sim_log, (t_value) dibp->ba, DEV_RDX, 32, PV_LEFT);
fprintf (sim_log, "\n");
}
return SCPE_STOP;
}