1
0
mirror of https://github.com/simh/simh.git synced 2026-04-28 12:47:25 +00:00

PDP8: Add device descriptions to all devices

This commit is contained in:
Mark Pizzolato
2018-12-15 12:55:54 -08:00
parent c2b45a26e6
commit 6fa8f6012c
16 changed files with 167 additions and 19 deletions

View File

@@ -142,6 +142,7 @@ int32 rk (int32 IR, int32 AC);
t_stat rk_svc (UNIT *uptr);
t_stat rk_reset (DEVICE *dptr);
t_stat rk_boot (int32 unitno, DEVICE *dptr);
const char *rk_description (DEVICE *dptr);
void rk_go (int32 function, int32 cylinder);
/* RK-8E data structures
@@ -192,7 +193,9 @@ DEVICE rk_dev = {
RK_NUMDR, 8, 24, 1, 8, 12,
NULL, NULL, &rk_reset,
&rk_boot, NULL, NULL,
&rk_dib, DEV_DISABLE
&rk_dib, DEV_DISABLE, 0,
NULL, NULL, NULL, NULL, NULL, NULL,
&rk_description
};
/* IOT routine */
@@ -461,3 +464,8 @@ M[BOOT_UNIT] = (unitno & RK_M_NUMDR) << 1;
cpu_set_bootpc (BOOT_START);
return SCPE_OK;
}
const char *rk_description (DEVICE *dptr)
{
return "RK8E/RK05 cartridge disk";
}