Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Posting-Version: version B 2.10 beta 3/9/83; site wbux5.UUCP
Path: utzoo!linus!decvax!genrad!mit-eddie!mit-vax!eagle!mhuxt!mhuxi!mhuxa!houxm!houxz!wbux5!lat
From: lat@wbux5.UUCP
Newsgroups: net.unix-wizards
Subject: Re: KMC info wanted
Message-ID: <121@wbux5.UUCP>
Date: Fri, 8-Jul-83 08:56:22 EDT
Article-I.D.: wbux5.121
Posted: Fri Jul  8 08:56:22 1983
Date-Received: Sat, 9-Jul-83 13:36:24 EDT
References: <370@houxf.UUCP>
Organization: Bell Labs, West Long Branch, NJ
Lines: 30

In kmc.c you have to make sure that the vector number and
the last three numbers of the address correspond to the
actual vector and address of your kmc(s).
Here is our config line:

device		kmc0	at uba? csr 0760200		vector kmcrint kmcxint

the vector for our kmc is 410 (you will find the address and vector numbers
inside the expansion cabinet) and here are the lines from our kmc.c:

	switch( reg )
		{
		case 020003400200:
			cvec = 0410;
			break;
		case 020003400060:
			cvec = 0340;
			break;
		case 020003400070:
			cvec = 0350;
			break;

		default:
			printf("bad kmc probe, reg=%o\n",reg);


Laurie
wbux5!lat