comparison frbl/test/srecreader.h @ 323:cefa700d1b8f

frbl: beginning of frbl2test
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 05 Mar 2020 22:05:01 +0000
parents
children
comparison
equal deleted inserted replaced
322:6e442ed0f64d 323:cefa700d1b8f
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 uint32_t addr;
11 };