| 1004 | } |
| 1005 | |
| 1006 | static void dump_oem(const uint8_t *oem) |
| 1007 | { |
| 1008 | int i, j; |
| 1009 | printf("OEM Section:\n"); |
| 1010 | for (i = 0; i < 4; i++) { |
| 1011 | printf("%02x:", i << 4); |
| 1012 | for (j = 0; j < 16; j++) |
| 1013 | printf(" %02x", oem[(i << 4) + j]); |
| 1014 | printf("\n"); |
| 1015 | } |
| 1016 | printf("\n"); |
| 1017 | } |
| 1018 | |
| 1019 | static void dump_fd(char *image, int size) |
| 1020 | { |