diff options
Diffstat (limited to 'src/lib/util/jedparse.h')
-rw-r--r-- | src/lib/util/jedparse.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/lib/util/jedparse.h b/src/lib/util/jedparse.h index f12101ca154..adb9010de1c 100644 --- a/src/lib/util/jedparse.h +++ b/src/lib/util/jedparse.h @@ -29,7 +29,9 @@ #define JEDERR_BAD_XMIT_SUM 2 #define JEDERR_BAD_FUSE_SUM 3 - +/* binary file formats */ +#define MAXLOADER 0 +#define DATAIO 1 /*************************************************************************** TYPE DEFINITIONS @@ -37,8 +39,9 @@ struct jed_data { - uint32_t numfuses; /* number of defined fuses */ - uint8_t fusemap[JED_MAX_FUSES / 8];/* array of bit-packed data */ + uint32_t numfuses; /* number of defined fuses */ + uint8_t fusemap[JED_MAX_FUSES / 8]; /* array of bit-packed data */ + uint8_t binfmt; /* file format MAXLOADER or DATAIO */ }; |