7 lines
169 B
C
7 lines
169 B
C
#ifndef _IMAGE_SAVER_H_
|
|
#define _IMAGE_SAVER_H_
|
|
|
|
// Save machine code from target_cde to file at out_path
|
|
int save_img(char *out_path, __uint32_t *target_code);
|
|
|
|
#endif
|