From 38b3aff4ca9f7105992045ae1ded50824bb05135 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sun, 19 Jun 2022 19:21:13 -0700 Subject: [PATCH] PDP11 & Unibus VAXen: Properly size RY Drives and no DEC144 --- PDP11/pdp11_ry.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PDP11/pdp11_ry.c b/PDP11/pdp11_ry.c index 9346555b..b46fab15 100644 --- a/PDP11/pdp11_ry.c +++ b/PDP11/pdp11_ry.c @@ -72,7 +72,7 @@ #define RY_DRV(d,a) \ { RX_NUMSC, RX_NUMSF, RX_NUMTR, (RX_NUMSC * RX_NUMTR),\ - #d, d##_NUMBY*2, DRVFL_RMV, \ + #d, d##_NUMBY, DRVFL_RMV, \ "DY", 0, 0, #a } static DRVTYP drv_tab[] = { @@ -598,7 +598,7 @@ t_stat ry_attach (UNIT *uptr, CONST char *cptr) { return sim_disk_attach_ex (uptr, cptr, uptr->drvtyp->sectsize, sizeof (uint8), TRUE, 0, - uptr->drvtyp->name, RX_NUMSC, 0, + uptr->drvtyp->name, 0, 0, NULL); }