3B2: Avoid adding disk information details to IFLOPPY disk images.

Floppy disk images are potentially used as a medium of data exchange
between some hosts and simulators and the disk information can confuse
this process.

As discussed in #847
This commit is contained in:
Mark Pizzolato 2020-05-03 11:58:21 -07:00
parent 5bec9d58dd
commit b121950aba

View file

@ -162,7 +162,7 @@ t_stat if_reset(DEVICE *dptr)
t_stat if_attach(UNIT *uptr, CONST char *cptr)
{
return sim_disk_attach(uptr, cptr, 512, 1, TRUE, 0, "IF", 0, 0);
return sim_disk_attach(uptr, cptr, 512, 1, TRUE, 0, NULL, 0, 0);
}
t_stat if_detach(UNIT *uptr)