Header Files.


Down below you see the header files included into the mcam software. The first two include header files are header files belonging to the C51 compiler. The other four files are standard "C" header files.

Note : The standard header files might be different from what you normal would expect. These are also delivered with the C51 Compiler from Keil.


/* Include File's (header-file's ect) to be stated here                      */

   #include "reg515.h"                  /* All Special 80535 Reg.s Spec's    */
   #include "intrins.h"                 /* 80535 Intrins functions (c51)     */
   #include "stdio.h"                   /* Standard I/O Functions            */
   #include "string.h"                  /* Standard String Handling          */
   #include "stdlib.h"                  /* Standard Library                  */
   #include "ctype.h"                   /* Standard "C" type functions       */


Back to Index page.