/******************************************************
* clippic.h											  *
* Multipaires analogique a transmission numerique.	  *
* Fichier d'entete du code du microcontroleur PIC	  *
* multiplexeur des CLIPs.		 					  *
* JMc Villers (33)							 		  *
*******************************************************/
	
#include <pic18fregs.h>
//#include <pic18f452.h>


typedef unsigned char octet;
typedef unsigned int mot;
/* Definition d'un champ de bits pour une optimisation de l'usage de la RAM. */
typedef union
	{struct
		{	octet b0:1;
	 		octet b1:1;
	 		octet b2:1;
	 		octet b3:1;
	 		octet b4:1;
	 		octet b5:1;
	 		octet b6:1;
	 		octet b7:1;
 		} bit_a_bit;
 	 octet tout_a_la_fois;
 	} mon_champ_8;
 	

void interruption_w5100(void);
