X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=ao-tools%2Fao-stmload%2Fao-stmload.h;h=bd59d66de4624b230ccf68ffd33d947ab70d1b78;hb=6f25d2359151fb114e22bf8e3b15c007cfb464b5;hp=2618b7f3310a931807a2877bad3ea2927757e754;hpb=c9ba2d17b979410acfa41f9954674757f7f321fc;p=fw%2Faltos diff --git a/ao-tools/ao-stmload/ao-stmload.h b/ao-tools/ao-stmload/ao-stmload.h index 2618b7f3..bd59d66d 100644 --- a/ao-tools/ao-stmload/ao-stmload.h +++ b/ao-tools/ao-stmload/ao-stmload.h @@ -3,7 +3,8 @@ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; version 2 of the License. + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of @@ -18,14 +19,11 @@ #ifndef _AO_STMLOAD_H_ #define _AO_STMLOAD_H_ -struct sym { - unsigned addr; - unsigned default_addr; - char *name; - int required; -}; +#include "ao-elf.h" -extern struct sym ao_symbols[]; +#define AO_BOOT_APPLICATION_BASE 0x08001000 + +extern struct ao_sym ao_symbols[]; extern int ao_num_symbols; extern int ao_num_required_symbols; @@ -36,10 +34,4 @@ ao_self_block_read(struct cc_usb *cc, uint32_t address, uint8_t block[256]); void ao_self_block_write(struct cc_usb *cc, uint32_t address, uint8_t block[256]); -struct hex_image * -ao_self_read(struct cc_usb *cc, uint32_t address, uint32_t length); - -int -ao_self_write(struct cc_usb *cc, struct hex_image *image); - #endif /* _AO_STMLOAD_H_ */