summaryrefslogtreecommitdiff
path: root/sdas/linksrc/lkrloc3.c
blob: b3301846d7e59bcd3d9ba6ad6aa6474a4e5350a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
/* lkrloc3.c */

/*
 *  Copyright (C) 1989-2010  Alan R. Baldwin
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 *
 * Alan R. Baldwin
 * 721 Berkeley St.
 * Kent, Ohio  44240
 *
 *   With enhancements from:
 *
 *      John L. Hartman (JLH)
 *      jhartman@compuserve.com
 *
 *      Bill McKinnon (BM)
 *      w_mckinnon@conknet.com
 */

#include "aslink.h"

/*)Module       lkrloc3.c
 *
 *      The module lkrloc3.c contains the functions which
 *      perform the version 3 relocation calculations.
 *
 *      lkrloc3.c contains the following functions:
 *              a_uint  adb_lo()
 *              a_uint  adb_hi()
 *              VOID    erpdmp3()
 *              VOID    errdmp3()
 *              VOID    rele3()
 *              VOID    relerr3()
 *              VOID    relerp3()
 *              VOID    reloc3()
 *              VOID    relp3()
 *              VOID    relr3()
 *              VOID    relt3()
 *
 *      lkrloc3.c the local variable errmsg3[].
 *
 */

/*)Function VOID        reloc3(c)
 *
 *                      int c           process code
 *
 *      The function reloc3() calls a particular relocation
 *      function determined by the process code.
 *
 *      local variable:
 *              none
 *
 *      global variables:
 *              int lkerr                       error flag
 *
 *      called functions:
 *              int fprintf()           c_library
 *              VOID    rele3()         lkrloc3.c
 *              VOID    relp3()         lkrloc3.c
 *              VOID    relr3()         lkrloc3.c
 *              VOId    relt3()         lkrloc3.c
 *
 *      side effects:
 *              Refer to the called relocation functions.
 *
 */

VOID
reloc3(int c)
{
        switch(c) {

        case 'T':
                relt3();
                break;

        case 'R':
                relr3();
                break;

        case 'P':
                relp3();
                break;

        case 'E':
                rele3();
                break;

        default:
                fprintf(stderr, "Undefined Relocation Operation\n");
                lkerr++;
                break;

        }
}


/*)Function VOID        relt3()
 *
 *      The function relt3() evaluates a T line read by
 *      the linker. Each byte value read is saved in the
 *      rtval[] array, rtflg[] is set, and the number of
 *      evaluations is maintained in rtcnt.
 *
 *              T Line
 *
 *              T xx xx nn nn nn nn nn ...
 *
 *
 *              In: "T n0 n1 n2 n3 ... nn"
 *
 *              Out:     0       1        2    ..  rtcnt
 *                        +----+----+----+----+----+
 *              rtval | n0 | n1 | n2 | .. | nn |
 *                        +----+----+----+----+----+
 *              rtflag|  1 |  1 |  1 |  1 |  1 |
 *                        +----+----+----+----+----+
 *
 *      The T line contains the assembled code output by the assem-
 *      bler with xx xx being the offset address from the current area
 *      base address and nn being the assembled instructions and data in
 *      byte format.
 *
 *      local variable:
 *              none
 *
 *      global variables:
 *              int rtcnt               number of values evaluated
 *              int rtflg[]             array of evaluation flags
 *              int rtval[]             array of evaluation values
 *
 *      called functions:
 *              int eval()              lkeval.c
 *              int more()              lklex.c
 *
 *      side effects:
 *              Linker input T line evaluated.
 *
 */

VOID
relt3(void)
{
        rtcnt = 0;
        while (more()) {
                if (rtcnt < NTXT) {
                        rtval[rtcnt] = eval();
                        rtflg[rtcnt] = 1;
                        rterr[rtcnt] = 0;
                        rtcnt++;
                }
        }
}

/*)Function     VOID    relr3()
 *
 *      The function relr3() evaluates a R line read by
 *      the linker.  The R line data is combined with the
 *      previous T line data to perform the relocation of
 *      code and data bytes.  The S19 / IHX output and
 *      translation of the LST files to RST files may be
 *      performed.
 *
 *              R Line
 *
 *              R 0 0 nn nn n1 n2 xx xx ...
 *
 *      The R line provides the relocation information to the linker.
 *      The nn nn value is the current area index, i.e.  which area  the
 *      current  values  were  assembled.  Relocation information is en-
 *      coded in groups of 4 bytes:
 *
 *      1.  n1 is the relocation mode and object format
 *              1.  bit 0 word(0x00)/byte(0x01)
 *              2.  bit 1 relocatable area(0x00)/symbol(0x02)
 *              3.  bit 2 normal(0x00)/PC relative(0x04) relocation
 *              4.  bit 3 1-byte(0x00)/2-byte(0x08) byte data
 *              5.  bit 4 signed(0x00)/unsigned(0x10) byte data
 *              6.  bit 5 normal(0x00)/page '0'(0x20) reference
 *              7.  bit 6 normal(0x00)/page 'nnn'(0x40) reference
 *
 *      2.  n2  is  a byte index into the corresponding (i.e.  pre-
 *              ceeding) T line data (i.e.  a pointer to the data to be
 *              updated  by  the  relocation).   The T line data may be
 *              1-byte or  2-byte  byte  data  format  or  2-byte  word
 *              format.
 *
 *      3.  xx xx  is the area/symbol index for the area/symbol be-
 *              ing referenced.  the corresponding area/symbol is found
 *              in the header area/symbol lists.
 *
 *      The groups of 4 bytes are repeated for each item requiring relo-
 *      cation in the preceeding T line.
 *
 *      local variable:
 *              areax   **a             pointer to array of area pointers
 *              int     aindex          area index
 *              char    *errmsg3[]      array of pointers to error strings
 *              int     error           error code
 *              int     mode            relocation mode
 *              adrr_t  paga            paging base area address
 *              a_uint  pags            paging symbol address
 *              a_uint  r               PCR relocation value
 *              a_uint  reli            relocation initial value
 *              a_uint  relv            relocation final value
 *              int     rindex          symbol / area index
 *              a_uint  rtbase          base code address
 *              a_uint  rtofst          rtval[] index offset
 *              int rtp                 index into T data
 *              sym **s                 pointer to array of symbol pointers
 *
 *      global variables:
 *              head    *hp             pointer to the head structure
 *              int     lkerr           error flag
 *              a_uint  pc              relocated base address
 *              int     pcb             bytes per instruction word
 *              rerr    rerr            linker error structure
 *              FILE    *stderr         standard error device
 *
 *      called functions:
 *              a_uint  adb_1b()        lkrloc.c
 *              a_uint  adb_2b()        lkrloc.c
 *              a_uint  adb_lo()        lkrloc3.c
 *              a_uint  adb_hi()        lkrloc3.c
 * sdld specific
 *              VOID    elf()           lkelf.c
 *              VOID    gb()            lkgb.c
 * end sdld specific
 *              a_uint  evword()        lkrloc.c
 *              int     eval()          lkeval.c
 *              int     fprintf()       c_library
 *              VOID    ihx()           lkihx.c
 *              VOID    s19()           lks19.c
 *              VOID    lkulist         lklist.c
 *              int     more()          lklex.c
 *              VOID    relerr3()       lkrloc3.c
 *              int     symval()        lksym.c
 *
 *      side effects:
 *              The R and T lines are combined to produce
 *              relocated code and data.  Output Sxx / Ixx
 *              and relocated listing files may be produced.
 *
 */

VOID
relr3(void)
{
        int mode;
        a_uint reli, relv;
        int aindex, rindex, rtp, error, i;
        a_uint r, rtbase, rtofst, paga = 0, pags = 0;
        struct areax **a;
        struct sym **s;

        /*
         * Get area and symbol lists
         */
        a = hp->a_list;
        s = hp->s_list;

        /*
         * Verify Area Mode
         */
        if (eval() != (R3_WORD | R3_AREA) || eval()) {
                fprintf(stderr, "R input error\n");
                lkerr++;
                return;
        }

        /*
         * Get area pointer
         */
        aindex = (int) evword();
        if (aindex >= hp->h_narea) {
                fprintf(stderr, "R area error\n");
                lkerr++;
                return;
        }

        /*
         * Select Output File
         */
        if (oflag != 0) {
                ap = a[aindex]->a_bap;
                if (ofp != NULL) {
                        rtabnk->b_rtaflg = rtaflg;
                        if (ofp != ap->a_ofp) {
                                lkflush();
                        }
                }
                ofp = ap->a_ofp;
                rtabnk = ap->a_bp;
                rtaflg = rtabnk->b_rtaflg;
        }

        /*
         * Base values
         */
        rtbase = adb_xb(0, 0);
        rtofst = a_bytes;

        /*
         * Relocate address
         */
        pc = adb_xb(a[aindex]->a_addr, 0);

        /*
         * Number of 'bytes' per PC address
         */
        pcb = 1;

        #if 0
        printf("area %d base address: 0x%x size: 0x%x rtbase: 0x%x\n", aindex,
                a[aindex]->a_addr, a[aindex]->a_size, rtbase);
        #endif
        /*
         * Do remaining relocations
         */
        while (more()) {
                error = 0;
                mode = (int) eval();

                if ((mode & R_ESCAPE_MASK) == R_ESCAPE_MASK)
                {
                        mode = ((mode & ~R_ESCAPE_MASK) << 8) | eval();
                        /* printf("unescaping rmode\n"); */
                }

                rtp = (int) eval();
                rindex = (int) evword();

                /*
                 * R3_SYM or R3_AREA references
                 */
                if (mode & R3_SYM) {
                        if (rindex >= hp->h_nsym) {
                                fprintf(stderr, "R symbol error\n");
                                lkerr++;
                                return;
                        }
                        reli = symval(s[rindex]);
                }
/* sdld specific */
                else if ((IS_R_J11(mode) || IS_R_J19(mode)) && (rindex == 0xFFFF)) {
                        /* absolute acall/ajmp address */
                        reli = 0;
                }
/* end sdld specific */
                else {
                        if (rindex >= hp->h_narea) {
                                fprintf(stderr, "R area error\n");
                                lkerr++;
                                return;
                        }
                        reli = a[rindex]->a_addr;
                }

                /*
                 * R3_PCR addressing
                 */
                if (mode & R3_PCR) {
                        if (mode & R3_BYTE) {
                                reli -= (pc + (rtp-rtofst) + 1);
                        } else {
                                reli -= (pc + (rtp-rtofst) + 2);
                        }
                }

                /*
                 * R3_PAG0 or R3_PAG addressing
                 */
                if (mode & (R3_PAG0 | R3_PAG)) {
                        paga  = sdp.s_area->a_addr;
                        pags  = sdp.s_addr;
                        reli -= paga + pags;
                }


                /* pdk instruction fusion */
                if (TARGET_IS_PDK) {
                        relv = adb_3b(reli, rtp);

                        /* pdk addresses in words, not in bytes,
                         * for goto/call instructions and byte selections.
                         */
                        int jump = 1, mask = 0;
                        if (rtval[rtp + 4] == 15) {
                                jump = rtval[rtp + 3] & 0x70;
                                mask = 0x40;
                                if (get_sdld_target() == TARGET_ID_PDK) {
                                        set_sdld_target(TARGET_ID_PDK15);
                                } else if (get_sdld_target() != TARGET_ID_PDK15) {
                                        error = 12;
                                }
                        } else if (rtval[rtp + 4] == 14) {
                                jump = rtval[rtp + 3] & 0x38;
                                mask = 0x20;
                                if (get_sdld_target() == TARGET_ID_PDK) {
                                        set_sdld_target(TARGET_ID_PDK14);
                                } else if (get_sdld_target() != TARGET_ID_PDK14) {
                                        error = 13;
                                }
                        } else if (rtval[rtp + 4] == 13) {
                                jump = rtval[rtp + 3] & 0x1C;
                                mask = 0x10;
                                if (get_sdld_target() == TARGET_ID_PDK) {
                                        set_sdld_target(TARGET_ID_PDK13);
                                } else if (get_sdld_target() != TARGET_ID_PDK13) {
                                        error = 14;
                                }

                                /* T*SN and SET* instructions for PDK13 needed to
                                 * be handled specially since their address is
                                 * in between the opcode.
                                 */
                                if ((rtval[rtp + 3] & 0x1F00) == 0x300 ||
                                    (rtval[rtp + 3] & 0x1F00) == 0x200) {
                                        rtval[rtp] <<= 1;
                                }
                        }

                        const int icall =
                            (mask >> 0) | (mask >> 1) | (mask >> 2);
                        const int igoto = (mask >> 0) | (mask >> 1);
                        if (((mode & R3_BYTE) && !(mode & R3_USGN)) ||
                            jump == icall || jump == igoto) {
                                /* Addresses cannot be bigger than N - 1 bits.
                                 * Any bits that are set past that point are
                                 * marker bits that should be not shifted.
                                 */
                                int marker = rtval[rtp + 1] & 0x80;
                                rtval[rtp + 1] &= ~0x80;

                                rtval[rtp] /= 2;
                                rtval[rtp] |= (rtval[rtp + 1] & 1) << 7;
                                rtval[rtp + 1] /= 2;
                                rtval[rtp + 1] |= marker;
                        }

                        const int inst = (rtval[rtp + 3] << 8) | rtval[rtp + 2];

                        /* Do the actual opcode fusion and ignore the two 
                         * bytes taken for the opcode by the assembler.
                         */
                        if (IS_R_J11(mode)) {
                                rtval[rtp + 2] |= rtval[rtp];
                                rtval[rtp + 3] |= rtval[rtp + 1];
                        } else if (mode & R3_MSB) {
                                rtval[rtp + 2] |= rtval[rtp + 1];
                                rtval[rtp] = rtval[rtp + 1];
                                rtval[rtp + 1] = 0;
                        } else {
                                rtval[rtp + 2] |= rtval[rtp];
                                rtval[rtp + 1] = 0;
                        }

                        const int addr = (rtval[rtp + 1] << 8) | rtval[rtp];
                        static int errorCount = 0;
                        if (vpdkinst(inst, addr, rtval[rtp + 4])) {
                                if (errorCount < 3) {
                                        error = 11;
                                } else if (errorCount == 3) {
                                        puts("?ASlink-Warning-More instruction address errors omitted");
                                }
                                ++errorCount;
                        }

                        mode &= ~R3_USGN;
                        rtflg[rtp] = 0;
                        rtflg[rtp + 1] = 0;
                        rtflg[rtp + 4] = 0;
                        rtofst += 3;
                }

                /*
                 * R3_BYTE or R3_WORD operation
                 */
                else if (mode & R3_BYTE) {
                        if (mode & R_BYT3)
                        {
                                /* This is a three byte address, of which
                                 * we will select one byte.
                                 */
/* sdld specific */
                                if (mode & R_BIT)
                                {
                                        relv = adb_24_bit(reli, rtp);
                                }
/* sdld specific */
                                else if (mode & R_HIB)
                                {
                                        /* printf("24 bit address selecting hi byte.\n"); */
                                        relv = adb_24_hi(reli, rtp);
                                }
                                else if (mode & R3_MSB)
                                {
                                        /* Note that in 24 bit mode, R3_MSB
                                         * is really the middle byte, not
                                         * the most significant byte.
                                         *
                                         * This is ugly and I can only apologize
                                         * for any confusion.
                                         */
                                        /* printf("24 bit address selecting middle byte.\n"); */
                                        relv = adb_24_mid(reli, rtp);
                                }
                                else
                                {
                                        /* printf("24 bit address selecting lo byte.\n"); */
                                        relv = adb_24_lo(reli, rtp);
                                }
                        }
                        else if (mode & R3_BYTX) {
                                /* This is a two byte address, of
                                 * which we will select one byte.
                                 */
                                if (mode & R_BIT) {
                                        relv = adb_bit(reli, rtp);
                                } else if (mode & R3_MSB) {
                                        relv = adb_hi(reli, rtp);
                                } else {
                                        relv = adb_lo(reli, rtp);
                                }
                        } else {
                                relv = adb_1b(reli, rtp);
                        }
                } else if (IS_R_J11(mode)) {
                        /*
                         * JLH: 11 bit jump destination for 8051.
                         * Forms two byte instruction with
                         * op-code bits in the MIDDLE!
                         * rtp points at 3 byte locus:
                         * first two will get the address,
                         * third one has raw op-code
                        */

                        /*
                         * Calculate absolute destination
                         * relv must be on same 2K page as pc
                        */
                        relv = adb_2b(reli, rtp);

                        if ((relv & ~((a_uint) 0x000007FF)) !=
                            ((pc + rtp - rtofst) & ~((a_uint) 0x000007FF))) {
                                        error = 6;
                        }

                        /*
                         * Merge MSB with op-code,
                         * ignoring top 5 bits of address.
                         * Then hide the op-code.
                        */
                        rtval[rtp] = ((rtval[rtp] & 0x07)<<5) | rtval[rtp+2];
                        rtflg[rtp + 2] = 0;
                        rtofst += 1;
                }
                else if (IS_R_J19(mode)) {
                        /*
                         * BK: 19 bit jump destination for DS80C390.
                         * Forms four byte instruction with
                         * op-code bits in the MIDDLE!
                         * rtp points at 4 byte locus:
                         * first three will get the address,
                         * fourth one has raw op-code
                         */
                        relv = adb_3b(reli, rtp);

                        /*
                         * Calculate absolute destination
                         *  relv must be on same 512K page as pc
                        */
                        if ((relv & ~((a_uint) 0x0007FFFF)) !=
                            ((pc + rtp - rtofst) & ~((a_uint) 0x0007FFFF))) {
                                error = 7;
                        }

                        /*
                         * Merge MSB with op-code,
                         * ignoring top 5 bits of address.
                         * Then hide the op-code.
                        */
                        rtval[rtp] = ((rtval[rtp] & 0x07)<<5) | rtval[rtp+3];
                        rtflg[rtp + 3] = 0;
                        rtofst += 1;
                }
                else if (IS_C24(mode))
                {
                        /*
                         * 24 bit destination
                         */
                        relv = adb_3b(reli, rtp);
                        }
                else
                {
                        /* 16 bit address. */
                        relv = adb_2b(reli, rtp);
                }

                /*
                 * R3_BYTE with R3_BYTX offset adjust
                 */
                if (mode & R3_BYTE) {
                        if (mode & R3_BYTX) {
                                rtofst += (a_bytes - 1);
                        }
                }

                /*
                 * Unsigned Byte Checking
                 */
                if (mode & R3_USGN && mode & R3_BYTE && relv & ~((a_uint) 0x000000FF))
                        error = 1;

                /*
                 * PCR Relocation Error Checking
                 */
                if (mode & R3_PCR && mode & R3_BYTE) {
                        r = relv & ~0x7F;
                        if (r != (a_uint) ~0x7F && r != 0)
                                error = 2;
                }

                /*
                 * Page Relocation Error Checking
                 */
                if ((TARGET_IS_GB || TARGET_IS_Z80) &&
                        mode & R3_PAG0 && (relv & ~0xFF || paga || pags))
                        error = 4;
                if (mode & R3_PAG  && (relv & ~0xFF))
                        error = 5;
/* sdld specific */
                if ((mode & R_BIT) && (relv & ~0x87FF))
                        error = 10;
/* end sdld specific */

                /*
                 * Error Processing
                 */
                if (error) {
                        rerr.aindex = aindex;
                        rerr.mode = mode;
                        rerr.rtbase = rtbase + rtp - rtofst - 1;
                        rerr.rindex = rindex;
                        rerr.rval = relv - reli;
                        relerr3(errmsg3[error]);

                        for (i=rtp; i<rtp+a_bytes; i++) {
                                if (rtflg[i]) {
                                        rterr[i] = error;
                                        break;
                                }
                        }
                }
        }
        if (uflag != 0) {
                lkulist(1);
        }
        if (oflag != 0) {
                lkout(1);
        }
}

char *errmsg3[] = {
/* 0 */ "LKRLOC3 Error List",
/* 1 */ "Unsigned Byte error",
/* 2 */ "Byte PCR relocation error",
/* 3 */ "",
/* 4 */ "Page0 relocation error",
/* 5 */ "Page Mode relocation error",
/* 6 */ "2K Page relocation error",
/* 7 */ "512K Page relocation error",
/* 8 */ "",
/* 9 */ "",
/* sdld specific */
/* 10 */        "Bit-addressable relocation error",
/* 11 */        "Invalid address for instruction",
/* 12 */        "mismatched pdk targets; expected pdk15",
/* 13 */        "mismatched pdk targets; expected pdk14",
/* 14 */        "mismatched pdk targets; expected pdk13"
/* end sdld specific */
};


/*)Function VOID        relp3()
 *
 *      The function relp3() evaluates a P line read by
 *      the linker.  The P line data is combined with the
 *      previous T line data to set the base page address
 *      and test the paging boundary and length.
 *
 *              P Line
 *
 *              P 0 0 nn nn n1 n2 xx xx
 *
 *      The P line provides the paging information to the linker as
 *      specified by a .setdp directive.  The format of the relocation
 *      information is identical to that of the R line.  The correspond-
 *      ing T line has the following information:
 *              T xx xx aa aa bb bb
 *
 *      Where aa aa is the area reference number which specifies the
 *      selected page area and bb bb is the base address of the page.
 *      bb bb will require relocation processing if the 'n1 n2 xx xx' is
 *      specified in the P line.  The linker will verify that the base
 *      address is on a 256 byte boundary and that the page length of an
 *      area defined with the PAG type is not larger than 256 bytes.
 *
 *      local variable:
 *              areax   **a             pointer to array of area pointers
 *              int aindex              area index
 *              int mode                relocation mode
 *              a_uint  relv    relocation value
 *              int rindex              symbol / area index
 *              int rtp                 index into T data
 *              sym **s                 pointer to array of symbol pointers
 *
 *      global variables:
 *              head *hp                pointer to the head structure
 *              int lkerr               error flag
 *              sdp sdp                 base page structure
 *              FILE *stderr    standard error device
 *
 *      called functions:
 *              a_uint adb_2b() lkrloc.c
 *              a_uint evword() lkrloc.c
 *              int eval()              lkeval.c
 *              int fprintf()   c_library
 *              int more()              lklex.c
 *              int symval()    lksym.c
 *
 *      side effects:
 *              The P and T lines are combined to set
 *              the base page address and report any
 *              paging errors.
 *
 */

VOID
relp3()
{
        int aindex, rindex;
        int mode, rtp;
        a_uint relv;
        struct areax **a;
        struct sym **s;

        /*
         * Get area and symbol lists
         */
        a = hp->a_list;
        s = hp->s_list;

        /*
         * Verify Area Mode
         */
        if (eval() != (R3_WORD | R3_AREA) || eval()) {
                fprintf(stderr, "P input error\n");
                lkerr++;
        }

        /*
         * Get area pointer
         */
        aindex = (int) evword();
        if (aindex >= hp->h_narea) {
                fprintf(stderr, "P area error\n");
                lkerr++;
                return;
        }

        /*
         * Do remaining relocations
         */
        while (more()) {
                mode = (int) eval();
                rtp = (int) eval();
                rindex = (int) evword();

                /*
                 * R3_SYM or R3_AREA references
                 */
                if (mode & R3_SYM) {
                        if (rindex >= hp->h_nsym) {
                                fprintf(stderr, "P symbol error\n");
                                lkerr++;
                                return;
                        }
                        relv = symval(s[rindex]);
                } else {
                        if (rindex >= hp->h_narea) {
                                fprintf(stderr, "P area error\n");
                                lkerr++;
                                return;
                        }
                        relv = a[rindex]->a_addr;
                }
                adb_2b(relv, rtp);
        }

        /*
         * Paged values
         */
        aindex = (int) adb_2b(0, 2);
        if (aindex >= hp->h_narea) {
                fprintf(stderr, "P area error\n");
                lkerr++;
                return;
        }
        sdp.s_areax = a[aindex];
        sdp.s_area = sdp.s_areax->a_bap;
        sdp.s_addr = adb_2b(0, 4);
        if (sdp.s_area->a_addr & 0xFF || sdp.s_addr & 0xFF)
                relerp3("Page Definition Boundary Error");
}

/*)Function VOID        rele3()
 *
 *      The function rele3() closes all open output files
 *      at the end of the linking process.
 *
 *      local variable:
 *              none
 *
 *      global variables:
 *              int oflag               output type flag
 *              int uflag               relocation listing flag
 *
 *      called functions:
 *              VOID    lkfclose()      lkbank.c
 *              VOID    lkflush()       lkout.c
 *              VOID    lkulist()       lklist.c
 *
 *      side effects:
 *              All open output files are closed.
 *
 */

VOID
rele3()
{
        if (uflag != 0) {
                lkulist(0);
        }
        if (oflag != 0) {
                lkflush();
                lkfclose();
        }
}

/*)Function VOID        relerr3(str)
 *
 *              char    *str            error string
 *
 *      The function relerr3() outputs the error string to
 *      stderr and to the map file (if it is open).
 *
 *      local variable:
 *              none
 *
 *      global variables:
 *              FILE    *mfp            handle for the map file
 *
 *      called functions:
 *              VOID    errdmp3()       lkrloc3.c
 *
 *      side effects:
 *              Error message inserted into map file.
 *
 */

VOID
relerr3(char *str)
{
        errdmp3(stderr, str);
        if (mfp)
                errdmp3(mfp, str);
}

/*)Function VOID        errdmp3(fptr, str)
 *
 *              FILE    *fptr           output file handle
 *              char    *str            error string
 *
 *      The function errdmp3() outputs the error string str
 *      to the device specified by fptr.  Additional information
 *      is output about the definition and referencing of
 *      the symbol / area error.
 *
 *      local variable:
 *              int mode                error mode
 *              int aindex              area index
 *              int lkerr               error flag
 *              int rindex              error index
 *              sym **s         pointer to array of symbol pointers
 *              areax   **a             pointer to array of area pointers
 *              areax   *raxp           error area extension pointer
 *
 *      global variables:
 *              sdp sdp         base page structure
 *
 *      called functions:
 *              int fprintf()   c_library
 *              VOID    prntval()       lkrloc.c
 *
 *      side effects:
 *              Error reported.
 *
 */

const char errdmp3_null_srcname[] = "<missing>";

VOID
errdmp3(FILE *fptr, char *str)
{
        int mode, aindex, rindex;
        struct sym **s;
        struct areax **a;
        struct areax *raxp;

        a = hp->a_list;
        s = hp->s_list;

        mode = rerr.mode;
        aindex = rerr.aindex;
        rindex = rerr.rindex;

        /*
         * Print Error
         */
        fprintf(fptr, "\n?ASlink-Warning-%s", str);
        lkerr++;

        /*
         * Print symbol if symbol based
         */
        if (mode & R3_SYM) {
                fprintf(fptr, " for symbol  %s\n",
                        &s[rindex]->s_id[0]);
        } else {
                fprintf(fptr, "\n");
        }

        /*
         * Print Ref Info
         */
/*         11111111112222222222333333333344444444445555555555666666666677777*/
/*12345678901234567890123456789012345678901234567890123456789012345678901234*/
/*        |                 |                 |                 |           */
        fprintf(fptr,
"         file              module            area              offset\n");
        fprintf(fptr,
"  Refby  %-14.14s    %-14.14s    %-14.14s    ",
                        (hp->h_lfile && hp->h_lfile->f_idp) ? hp->h_lfile->f_idp : errdmp3_null_srcname,
                        &hp->m_id[0],
                        &a[aindex]->a_bap->a_id[0]);
        prntval(fptr, rerr.rtbase);

        /*
         * Print Def Info
         */
        if (mode & R3_SYM) {
                raxp = s[rindex]->s_axp;
        } else {
                raxp = a[rindex];
        }
/*         11111111112222222222333333333344444444445555555555666666666677777*/
/*12345678901234567890123456789012345678901234567890123456789012345678901234*/
/*        |                 |                 |                 |           */
        fprintf(fptr,
"  Defin  %-14.14s    %-14.14s    %-14.14s    ",
                        (raxp->a_bhp->h_lfile && raxp->a_bhp->h_lfile->f_idp) ? raxp->a_bhp->h_lfile->f_idp : errdmp3_null_srcname,
                        &raxp->a_bhp->m_id[0],
                        &raxp->a_bap->a_id[0]);
        if (mode & R3_SYM) {
                prntval(fptr, s[rindex]->s_addr);
        } else {
                prntval(fptr, rerr.rval);
        }
}

/*)Function VOID        relerp3(str)
 *
 *              char    *str            error string
 *
 *      The function relerp3() outputs the paging error string to
 *      stderr and to the map file (if it is open).
 *
 *      local variable:
 *              none
 *
 *      global variables:
 *              FILE    *mfp            handle for the map file
 *
 *      called functions:
 *              VOID    erpdmp3()       lkrloc3.c
 *
 *      side effects:
 *              Error message inserted into map file.
 *
 */

VOID
relerp3(char *str)
{
        erpdmp3(stderr, str);
        if (mfp)
                erpdmp3(mfp, str);
}

/*)Function VOID        erpdmp3(fptr, str)
 *
 *              FILE    *fptr           output file handle
 *              char    *str            error string
 *
 *      The function erpdmp3() outputs the error string str
 *      to the device specified by fptr.
 *
 *      local variable:
 *              head    *thp            pointer to head structure
 *
 *      global variables:
 *              int             lkerr           error flag
 *              sdp             sdp                     base page structure
 *
 *      called functions:
 *              int fprintf()           c_library
 *              VOID    prntval()       lkrloc.c
 *
 *      side effects:
 *              Error reported.
 *
 */

VOID
erpdmp3(FILE *fptr, char *str)
{
        struct head *thp;

        thp = sdp.s_areax->a_bhp;

        /*
         * Print Error
         */
        fprintf(fptr, "\n?ASlink-Warning-%s\n", str);
        lkerr++;

        /*
         * Print PgDef Info
         */
/*         111111111122222222223333333333444444444455555555556666666666777*/
/*123456789012345678901234567890123456789012345678901234567890123456789012*/
        fprintf(fptr,
"         file              module            pgarea            pgoffset\n");
        fprintf(fptr,
"  PgDef  %-14.14s    %-14.14s    %-14.14s    ",
                        thp->h_lfile->f_idp,
                        &thp->m_id[0],
                        &sdp.s_area->a_id[0]);
        prntval(fptr, sdp.s_area->a_addr + sdp.s_addr);
}

/* sdld specific */
/*)Function a_uint              adb_bit(v, i)
 *
 *              a_uint v        value to add to byte
 *              int i           rtval[] index
 *
 *      The function adb_bit() converts the single
 *      byte address value contained in rtval[i] to bit-
 *      addressable space and adds the value of v to it.
 *      The new value of rtval[i] is returned.
 *
 *      local variable:
 *              a_uint  j               temporary evaluation variable
 *
 *      global variables:
 *              none
 *
 *      called functions:
 *              none
 *
 *      side effects:
 *              The value of rtval[] is changed.
 *
 */

a_uint
adb_bit(a_uint v, int i)
{
        a_uint j;

        j = adb_lo(v, i) & 0xFF;
        if ((j >= 0x20) && (j <= 0x2F)) {
                j = (j - 0x20) * 8;
        } else if ((j < 0x80) || ((j & 0x07) != 0)) {
                return(0x100);//error
        }

        if (hilo) {
                j = rtval[i+1] = j + (rtval[i] & 0x07);
        } else {
                j = rtval[i] = j + (rtval[i+1] & 0x07);
        }
        return(j);
}
/* end sdld specific */

/*)Function     a_uint  adb_lo(v, i)
 *
 *              int     v               value to add to byte
 *              int     i               rtval[] index
 *
 *      The function adb_lo() adds the value of v to the
 *      value contained in rtval[i] through rtval[i + a_bytes - 1].
 *      The new value of rtval[i] ... is returned.
 *      The rtflg[] flags are cleared for all rtval[i] ... except
 *      the LSB.
 *
 *      local variable:
 *              a_uint  j               temporary evaluation variable
 *
 *      global variables:
 *              hilo                    byte ordering parameter
 *
 *      called functions:
 *              none
 *
 *      side effects:
 *              The value of rtval[] is changed.
 *              The rtflg[] values corresponding to all bytes
 *              except the LSB of the value are cleared to reflect
 *              the fact that the LSB is the selected byte.
 *
 */

a_uint
adb_lo(v, i)
a_uint  v;
int     i;
{
        a_uint j;
        int m, n;

        j = adb_xb(v, i);
        /*
         * LSB is lowest order byte of data
         */
        m = (hilo ? a_bytes-1 : 0);
        for (n=0; n<a_bytes; n++) {
                if(n != m) rtflg[i+n] = 0;
        }
        return (j);
}

/*)Function     a_uint  adb_hi(v, i)
 *
 *              int     v               value to add to byte
 *              int     i               rtval[] index
 *
 *      The function adb_hi() adds the value of v to the
 *      value contained in rtval[i] through rtval[i + a_bytes - 1].
 *      The new value of rtval[i] .... is returned.
 *      The LSB rtflg[] is cleared.
 *
 *      local variable:
 *              a_uint  j               temporary evaluation variable
 *
 *      global variables:
 *              hilo                    byte ordering parameter
 *
 *      called functions:
 *              none
 *
 *      side effects:
 *              The value of rtval[] is changed.
 *              The rtflg[] values corresponding to all bytes
 *              except the 2nd byte (MSB) are cleared to reflect
 *              the fact that the MSB is the selected byte.
 *
 */

a_uint
adb_hi(v, i)
a_uint  v;
int     i;
{
        a_uint j;
        int m, n;

        j = adb_xb(v, i);
        /*
         * MSB is next lowest order byte of data
         */
        m = (hilo ? a_bytes-2 : 1);
        for (n=0; n<a_bytes; n++) {
                if(n != m) rtflg[i+n] = 0;
        }
        return (j);
}

/* sdld specific */
/*)Function a_uint              adb_24_bit(v, i)
 *
 *              a_uint v        value to add to byte
 *              int i           rtval[] index
 *
 *      The function adb_24_bit() converts the single
 *      byte address value contained in rtval[i] to bit-
 *      addressable space and adds the value of v to it.
 *      The new value of rtval[i] is returned.
 *
 *      local variable:
 *              a_uint  j               temporary evaluation variable
 *
 *      global variables:
 *              none
 *
 *      called functions:
 *              none
 *
 *      side effects:
 *              The value of rtval[] is changed.
 *
 */

a_uint
adb_24_bit(v, i)
a_uint v;
int i;
{
        a_uint j;

        j = adb_24_lo(v, i) & 0xFF;
        if ((j >= 0x20) && (j <= 0x2F)) {
                j = (j - 0x20) * 8;
        } else if ((j < 0x80) || ((j & 0x07) != 0)) {
                return(0x100);//error
        }

        if (hilo) {
                j = rtval[i+2] = j + (rtval[i+1] & 0x07);
        } else {
                j = rtval[i] = j + (rtval[i+1] & 0x07);
        }
        return(j);
}

/*)Function a_uint              adb_24_hi(v, i)
 *
 *              a_uint v        value to add to byte
 *              int i           rtval[] index
 *
 *      The function adb_24_hi() adds the value of v to the
 *      24 bit value contained in rtval[i] - rtval[i+2].
 *      The new value of rtval[i] / rtval[i+1] is returned.
 *      The LSB & middle byte rtflg[] is cleared.
 *
 *      local variable:
 *              a_uint  j               temporary evaluation variable
 *
 *      global variables:
 *              hilo                    byte ordering parameter
 *
 *      called functions:
 *              none
 *
 *      side effects:
 *              The value of rtval[] is changed.
 *              The rtflg[] value corresponding to the
 *              LSB & middle byte of the word value is cleared to
 *              reflect the fact that the MSB is the selected byte.
 *
 */

a_uint
adb_24_hi(v, i)
a_uint v;
int i;
{
        a_uint j;

        j = adb_3b(v, i);

        /* Remove the lower two bytes. */
        if (hilo)
        {
                rtflg[i+2] = 0;
        }
        else
        {
                rtflg[i] = 0;
        }
        rtflg[i+1] = 0;

        return (j);
}

/*)Function a_uint              adb_24_mid(v, i)
 *
 *              a_uint v        value to add to byte
 *              int i           rtval[] index
 *
 *      The function adb_24_mid() adds the value of v to the
 *      24 bit value contained in rtval[i] - rtval[i+2].
 *      The new value of rtval[i] / rtval[i+1] is returned.
 *      The LSB & MSB byte rtflg[] is cleared.
 *
 *      local variable:
 *              a_uint  j               temporary evaluation variable
 *
 *      global variables:
 *              hilo                    byte ordering parameter
 *
 *      called functions:
 *              none
 *
 *      side effects:
 *              The value of rtval[] is changed.
 *              The rtflg[] value corresponding to the
 *              LSB & MSB of the 24 bit value is cleared to reflect
 *              the fact that the middle byte is the selected byte.
 *
 */

a_uint
adb_24_mid(v, i)
a_uint v;
int i;
{
        a_uint j;

        j = adb_3b(v, i);

        /* remove the MSB & LSB. */
        rtflg[i+2] = 0;
        rtflg[i] = 0;

        return (j);
}

/*)Function a_uint              adb_24_lo(v, i)
 *
 *              a_uint v        value to add to byte
 *              int i           rtval[] index
 *
 *      The function adb_24_lo() adds the value of v to the
 *      24 bit value contained in rtval[i] - rtval[i+2].
 *      The new value of rtval[i] / rtval[i+1] is returned.
 *      The MSB & middle byte rtflg[] is cleared.
 *
 *      local variable:
 *              a_uint  j               temporary evaluation variable
 *
 *      global variables:
 *              hilo                    byte ordering parameter
 *
 *      called functions:
 *              none
 *
 *      side effects:
 *              The value of rtval[] is changed.
 *              The rtflg[] value corresponding to the
 *              MSB & middle byte  of the word value is cleared to
 *              reflect the fact that the LSB is the selected byte.
 *
 */

a_uint
adb_24_lo(v, i)
a_uint v;
int i;
{
        a_uint j;

        j = adb_3b(v, i);

        /* Remove the upper two bytes. */
        if (hilo)
        {
                rtflg[i] = 0;
        }
        else
        {
                rtflg[i+2] = 0;
        }
        rtflg[i+1] = 0;

        return (j);
}

/*)Function VOID              vpdkinst(inst, addr, ver)
 *
 *              int inst        instruction
 *              int addr        address
 *              int ver         PDK version
 *
 *      The function vpdkinst() tests whether the address
 *      does not exceed the allowed maximum size of the
 *      instruction.
 *
 *      local variable:
 *              a_uint  j               temporary evaluation variable
 *
 *      global variables:
 *              hilo                    byte ordering parameter
 *
 *      called functions:
 *              none
 *
 *      side effects:
 *              The value of rtval[] is changed.
 *              The rtflg[] value corresponding to the
 *              MSB & middle byte  of the word value is cleared to
 *              reflect the fact that the LSB is the selected byte.
 *
 */

int
vpdkinst(inst, addr, ver)
int inst;
int addr;
int ver;
{
        switch (ver) {
        case 13: /* PDK 13 */
                switch (inst & 0x1C00) {
                case 0x1800:
                case 0x1C00:
                        if (addr > 0x3FF) {
                                return 1;
                        }
                        break;
                case 0x1000:
                case 0x1400:
                        if (addr > 0xFF) {
                                return 1;
                        }
                        break;
                case 0x0C00:
                case 0x2000:
                        if (addr > 0x1F) {
                                return 1;
                        }
                        break;
                case 0x800:
                case 0x400:
                        if (addr > 0x3F) {
                                return 1;
                        }
                        break;
                case 0x0:
                        if (inst & 0x200) {
                                /* Address was right shifted to fit into the
                                 * opcode.
                                 */
                                if ((addr >> 1) > 0xF) {
                                        return 1;
                                }
                        } else if (inst & 0x100) {
                                if (addr > 0xFF) {
                                        return 1;
                                }
                        } else if (addr > 0x1F) {
                                return 1;
                        }
                        break;
                }
                break;
        case 14: /* PDK 14 */
                switch (inst & 0x3800) {
                case 0x3000:
                case 0x3800:
                        if (addr > 0x7FF) {
                                return 1;
                        }
                        break;
                case 0x2800:
                        if (addr > 0xFF) {
                                return 1;
                        }
                        break;
                case 0x1800:
                case 0x2000:
                        if (addr > 0x3F) {
                                return 1;
                        }
                        break;
                case 0x800:
                case 0x1000:
                        if (addr > 0x7F) {
                                return 1;
                        }
                        break;
                case 0x0:
                        if (inst & 0x400) {
                                if (addr > 0x3F) {
                                        return 1;
                                }
                        } else if ((inst & 0x300) == 0x300) {
                                if (addr & 0x1) {
                                        return 1;
                                }
                        } else if ((inst & 0x300) == 0x200 && addr > 0xFF) {
                                return 1;
                        } else if ((inst & 0x300) == 0x100 && addr > 0x3F) {
                                return 1;
                        }
                        break;
                }
                break;
        case 15: /* PDK 15 */
                switch (inst & 0x7000) {
                case 0x6000:
                case 0x7000:
                        if (addr > 0xFFF) {
                                return 1;
                        }
                        break;
                case 0x5000:
                        if (inst & 0x800) {
                                if (addr > 0x7F) {
                                        return 1;
                                }
                                break;
                        }
                case 0x1000:
                case 0x2000:
                        if (addr > 0xFF) {
                                return 1;
                        }
                        break;
                case 0x3000:
                case 0x4000:
                        if (addr > 0x7F) {
                                return 1;
                        }
                        break;
                case 0x0:
                        switch (inst & 0xC00) {
                        case 0xC00:
                                if (addr > 0xFF) {
                                        return 1;
                                }
                                break;
                        case 0x400:
                                if (addr > 0xFF || (addr & 0x1)) {
                                        return 1;
                                }
                                break;
                        case 0x0:
                                if ((inst & 0x200) && addr > 0xFF) {
                                        return 1;
                                } else if (!(inst & 0x200) && addr > 0x7F) {
                                        return 1;
                                }
                                break;
                        }
                        break;
                }
                break;
        }
        return 0;
#undef MASK
}

/* end sdld specific */