

#include "at89c51cc03.h"
#include "System/compiler.h"
#include "System/hardware.h"

#ifndef _PARAMETERS_H
#define _PARAMETERS_H

typedef struct
                {
                unsigned char par0;
                ...
                unsigned char par27;
                }
                device;

#ifdef _PARAMETERS_C

xdata device ;

#else


extern xdata device ;
#endif
#endif