1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-04-29 05:06:42 +00:00

KA10: DKB device doesn't use a service routine.

This commit is contained in:
Lars Brinkhoff
2021-04-25 18:51:33 +02:00
parent 14c0012bb0
commit 31999556a9

View File

@@ -54,7 +54,6 @@
t_stat dkb_devio(uint32 dev, uint64 *data);
int dkb_keyboard (SIM_KEY_EVENT *kev);
t_stat dkb_svc(UNIT *uptr);
t_stat dkb_reset(DEVICE *dptr);
t_stat dkb_help (FILE *st, DEVICE *dptr, UNIT *uptr, int32 flag, const char *cptr);
const char *dkb_description (DEVICE *dptr);
@@ -65,7 +64,7 @@ int dkb_kmod = 0;
DIB dkb_dib = { DKB_DEVNUM, 1, dkb_devio, NULL};
UNIT dkb_unit[] = {
{UDATA (&dkb_svc, UNIT_IDLE, 0) },
{UDATA (NULL, UNIT_IDLE, 0) },
{ 0 }
};
@@ -417,11 +416,6 @@ int dkb_keyboard (SIM_KEY_EVENT *kev)
}
t_stat dkb_svc( UNIT *uptr)
{
return SCPE_OK;
}
t_stat dkb_reset( DEVICE *dptr)
{
if ((dkb_dev.flags & DEV_DIS) == 0)