1
0
mirror of https://github.com/simh/simh.git synced 2026-03-02 01:40:43 +00:00

PDP11 & Unibus VAXen: Properly size RY Drives and no DEC144

This commit is contained in:
Mark Pizzolato
2022-06-19 19:21:13 -07:00
parent ec117739b7
commit 38b3aff4ca

View File

@@ -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);
}