home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <string.h>
- #include <stdlib.h>
-
- #define IH_COLON 0
- #define IH_NRDATA 1
- #define IH_ADDRESS 3
- #define IH_STATUS 7
- #define IH_FIRSTDATA 9
-
- #define IH_MAXDATA 16
-
- #define CONTINOUS 0
- #define FRAGMENTED 1
-
-
- #ifdef _INTELHEX
- # define extern
- #endif
-
- char *readintelhex(FILE *fp,unsigned char *buffer,int maxbuffer,long *plength,int flag,long *p_epromstart);
- char *writeintelhex(FILE *fp,unsigned char *buffer,int offset,int length);
-
- #ifdef _INTELHEX
- # undef extern
- #endif
-
-
-