ao-tools: Move ao-selfload into library
[fw/altos] / ao-tools / ao-stmload / ao-stmload.h
index 98884535f6ecaf4926685d4d99e70a807b31d00b..1ba9a9775143e1c675de12521efd840c11757946 100644 (file)
 #ifndef _AO_STMLOAD_H_
 #define _AO_STMLOAD_H_
 
-struct sym {
-       unsigned        addr;
-       unsigned        default_addr;
-       char            *name;
-       int             required;
-};
+#include "ao-elf.h"
 
 #define AO_BOOT_APPLICATION_BASE       0x08001000
 
-extern struct sym ao_symbols[];
+extern struct ao_sym ao_symbols[];
 
 extern int ao_num_symbols;
 extern int ao_num_required_symbols;
@@ -38,12 +33,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);
-
-extern int ao_self_verbose;
-
 #endif /* _AO_STMLOAD_H_ */