From efcf0c33e1a6f69fab0faabe4ef969d7af82d816 Mon Sep 17 00:00:00 2001 From: Richard Cornwell Date: Sun, 8 Sep 2019 23:39:38 -0400 Subject: [PATCH] KA10: Fixed compile error. --- PDP10/kx10_cpu.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PDP10/kx10_cpu.c b/PDP10/kx10_cpu.c index 4a7e21e..757bf23 100644 --- a/PDP10/kx10_cpu.c +++ b/PDP10/kx10_cpu.c @@ -1228,7 +1228,9 @@ t_stat dev_pag(uint32 dev, uint64 *data) { } if (res & BIT1) { /* Load previous section */ +#if KLB prev_sect = (res >> 18) & 077; +#endif } if (res & BIT2) { ub_ptr = (res & 017777) << 9;