X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=ccdbg.h;h=05abc97fb3b4993eae9caf6bfff3f0461b773a5b;hp=0f07e2e90a35a5b162409064e3fecac13940a436;hb=dc03adc179669d41e3551d74b3c5a60db41ff217;hpb=807e2adacb025af77bb53c03209e9c8e0d7a5f95 diff --git a/ccdbg.h b/ccdbg.h index 0f07e2e9..05abc97f 100644 --- a/ccdbg.h +++ b/ccdbg.h @@ -151,6 +151,30 @@ ccdbg_add_debug(int level); void ccdbg_clear_debug(int level); +/* ccdbg-hex.c */ +struct hex_record { + uint8_t length; + uint16_t address; + uint8_t type; + uint8_t checksum; + uint8_t data[0]; +}; + +struct hex_file { + int nrecord; + struct hex_record *records[0]; +}; + +#define HEX_RECORD_NORMAL 0x00 +#define HEX_RECORD_EOF 0x01 +#define HEX_RECORD_EXTENDED_ADDRESS 0x02 + +struct hex_file * +ccdbg_hex_file_read(FILE *file, char *name); + +void +ccdbg_hex_file_free(struct hex_file *hex); + /* ccdbg-io.c */ void ccdbg_half_clock(struct ccdbg *dbg); @@ -230,6 +254,9 @@ ccdbg_write_memory(struct ccdbg *dbg, uint16_t addr, uint8_t *bytes, int nbytes) uint8_t ccdbg_read_memory(struct ccdbg *dbg, uint16_t addr, uint8_t *bytes, int nbytes); +uint8_t +ccdbg_write_hex(struct ccdbg *dbg, struct hex_file *hex); + /* cp-usb.c */ void cp_usb_init(struct ccdbg *dbg);