1 /* Begin include file op_mnemonic_dcl_.incl.pl1 BIM 12/82 */ 2 /* format: style3 */ 3 /* INTERNAL INTERFACE OF THE PL/I COMPILER */ 4 5 declare 1 op_mnemonic_$op_mnemonic_ 6 (0:1023) aligned like op_mnemonic external static; 7 8 declare op_mnemonic_ptr pointer; 9 declare 1 op_mnemonic aligned based (op_mnemonic_ptr), 10 2 name char (6) unaligned, /* opcode name, save abd/abdx, or .... */ 11 2 dtype fixed bin (2) unaligned, /* for num_words > 1, 0 ==> char, 1 ==> bit, 2 ==> other. Else 1 ==> abd/abdx (funny bit 29) */ 12 2 num_desc fixed bin (5) unaligned, 13 2 num_words fixed bin (8) unaligned; 14 15 /* End include file op_mnemonic_dcl_ */