From b121950abaa960e417976b762ea6548c64854d99 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sun, 3 May 2020 11:58:21 -0700 Subject: [PATCH] 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 --- 3B2/3b2_if.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3B2/3b2_if.c b/3B2/3b2_if.c index e8cf3b71..445b4d2a 100644 --- a/3B2/3b2_if.c +++ b/3B2/3b2_if.c @@ -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)