summaryrefslogtreecommitdiff
path: root/ao-tools/ao-load
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-11-27 13:59:06 -0800
committerKeith Packard <keithp@keithp.com>2013-11-27 13:59:06 -0800
commit95a8180f3d7929dbad65c80421f99c925f245af0 (patch)
tree7934a5cc48edf7e774d5be5f366203a79a2db497 /ao-tools/ao-load
parent73b1a7e644e255558378ab66de6426a7dfd8a7dc (diff)
ao-tools: Create general elf and hex library routines
Pulls the elf stuff out of ao-stmload, change the hex stuff into ao_ routines. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-tools/ao-load')
-rw-r--r--ao-tools/ao-load/ao-load.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/ao-tools/ao-load/ao-load.c b/ao-tools/ao-load/ao-load.c
index e3cef4a5..c1f55149 100644
--- a/ao-tools/ao-load/ao-load.c
+++ b/ao-tools/ao-load/ao-load.c
@@ -80,7 +80,7 @@ find_symbols(FILE *map)
}
static int
-rewrite(struct hex_image *image, unsigned addr, char *data, int len)
+rewrite(struct ao_hex_image *image, unsigned addr, char *data, int len)
{
int i;
if (addr < image->address || image->address + image->length < addr + len)
@@ -114,8 +114,8 @@ main (int argc, char **argv)
struct ccdbg *dbg;
uint8_t status;
uint16_t pc;
- struct hex_file *hex;
- struct hex_image *image;
+ struct ao_hex_file *hex;
+ struct ao_hex_image *image;
char *filename;
FILE *file;
FILE *map;
@@ -182,18 +182,18 @@ main (int argc, char **argv)
}
fclose(map);
- hex = ccdbg_hex_file_read(file, filename);
+ hex = ao_hex_file_read(file, filename);
fclose(file);
if (!hex) {
perror(filename);
exit (1);
}
- image = ccdbg_hex_image_create(hex);
+ image = ao_hex_image_create(hex);
if (!image) {
fprintf(stderr, "image create failed\n");
exit (1);
}
- ccdbg_hex_file_free(hex);
+ ao_hex_file_free(hex);
serial = strtoul(serial_string, NULL, 0);
if (!serial)
@@ -276,7 +276,7 @@ main (int argc, char **argv)
} else {
printf("Cannot load code to 0x%04x\n",
image->address);
- ccdbg_hex_image_free(image);
+ ao_hex_image_free(image);
ccdbg_close(dbg);
exit(1);
}