1 #ifndef lint
2 static char sccsid[] = "@(#)misc.c	1.3 (Berkeley) 07/27/93";
3 #endif lint
4 
5 #include "defs.h"
6 #include "ext.h"
7 
8 /*
9  * Number register alocation
10  *
11  * This array must have at least 3*qcol entries or
12  * illegal register names will result. (bwk)
13  */
14 
15  /*
16   * This will counts for the restriction on MAXCOL
17   */
18 
19 char *nregs[] = {
20 	"40", "41", "42", "43", "44", "45", "46", "47", "48", "49",
21 	"50", "51", "52", "53", "54", "55", "56", "57", "58", "59",
22 	"60", "61", "62", "63", "64", "65", "66", "67", "68", "69",
23 	"70", "71", "72", "73", "74", "75", "76", "77", "78", "79",
24 	"80", "81", "82", "83", "84", "85", "86", "87", "88", "89",
25 	"90", "91", "92", "93", "94", "95", "96", "97", "4q", "4r",
26 	"4s", "4t", "4u", "4v", "4w", "4x", "4y", "4z", "4;", "4.",
27 	"4a", "4b", "4c", "4d", "4e", "4f", "4g", "4h", "4i", "4j",
28 	"4k", "4l", "4m", "4n", "4o", "4p", "5a", "5b", "5c", "5d",
29 	"5e", "5f", "5g", "5h", "5i", "5j", "5k", "5l", "5m", "5n",
30 	"5o", "5p", "5q", "5r", "5s", "5t", "5u", "5v", "5w", "5x",
31 	"6a", "6b", "6c", "6d", "6e", "6f", "6g", "6h", "6i", "6j",
32 	"6k", "6l", "6m", "6n", "6o", "6p", "6q", "6r", "6s", "6t",
33 	"6u", "6v", "6w", "6x", "6y", "6z", "7a", "7b", "7c", "7d",
34 	"7e", "7f", "7g", "7h", "7i", "7j", "7k", "7l", "7m", "7n",
35 	"7o", "7p", "7q", "7r", "7s", "7t", "7u", "7v", "7w", "7x",
36 	"7y", "7z", "8a", "8b", "8c", "8d", "8e", "8f", "8g", "8h",
37 	"8i", "8j", "8k", "8l", "8m", "8n", "8o", "8p", "8q", "8r",
38 	"8s", "8t", "8u", "8v", "8w", "8x", "8y", "8z", "9a", "9b",
39 	"9c", "9d", "9e", "9f", "9g", "9h", "9i", "9j", "9k", "9l",
40 	"9m", "9n", "9o", "9p", "9q", "9r", "9s", "9t", "9u", "9v",
41 	"9w", "9x", "9y", "9z",
42 	0
43 };
44 
45 char *
reg(col,place)46 reg(col, place)
47 {
48 	register int i;
49 
50 	i = sizeof(nregs);
51 
52 	if( i < 2 * 3 * qcol)
53 		error("Too many columns for registers");
54 	if( i < qcol * place + col)
55 		error("Out of registers");
56 	return(nregs[qcol * place + col]);
57 }
58