From 4b43f32deb09713849deb6d16dd1c100f6fb8c56 Mon Sep 17 00:00:00 2001 From: Paul Koning Date: Thu, 25 Apr 2019 15:20:10 -0400 Subject: [PATCH] PDP11: fix SysID message data for LQA Correct the MOP data type code for the Device Type field in the SysID message, and the value used for device type DELQA. --- PDP11/pdp11_xq.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PDP11/pdp11_xq.c b/PDP11/pdp11_xq.c index 66904fc3..aa01a98b 100644 --- a/PDP11/pdp11_xq.c +++ b/PDP11/pdp11_xq.c @@ -2718,10 +2718,10 @@ t_stat xq_system_id (CTLR* xq, const ETH_MAC dest, uint16 receipt_id) memcpy (&msg[34], xq->var->mac, sizeof(ETH_MAC)); /* ROM address */ /* DEVICE TYPE */ - msg[40] = 37; /* type */ + msg[40] = 100; /* type */ msg[41] = 0x00; /* type */ msg[42] = 0x01; /* length */ - msg[43] = 0x11; /* value (0x11=DELQA) */ + msg[43] = 0x25; /* value (0x25(37)=DELQA) */ if (xq->var->type == XQ_T_DELQA_PLUS) /* DELQA-T has different Device ID */ msg[43] = 0x4B; /* value (0x4B(75)=DELQA-T) */