FreeCalypso > hg > freecalypso-sw
comparison loadtools/srecreader.h @ 7:aa1f6fe16fef
loadtools building blocks started
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
|---|---|
| date | Tue, 30 Apr 2013 07:19:48 +0000 |
| parents | |
| children | acaac9162574 |
comparison
equal
deleted
inserted
replaced
| 6:5eaafa83be60 | 7:aa1f6fe16fef |
|---|---|
| 1 /* this header file defines the data structures for the SREC reader module */ | |
| 2 | |
| 3 struct srecreader { | |
| 4 char *filename; | |
| 5 FILE *openfile; | |
| 6 int lineno; | |
| 7 u_char record[256]; /* binary */ | |
| 8 char record_type; /* ASCII char */ | |
| 9 u_char datalen; | |
| 10 u_long addr; | |
| 11 }; |
