nes-proj/cpu/cc2430/converter/converter.h

14 lines
200 B
C

#ifndef CONVERTER_H
#define CONVERTER_H
#define CONVERTER_VERSION "v1.3"
typedef struct {
int target_type;
char ihex_file[128];
}conf_opts_t;
enum target { UNDEFINED, VERSION, CONVERT };
#endif