10 lines
230 B
C
Executable file
10 lines
230 B
C
Executable file
#ifndef _IMAGE_SAVER_H_
|
|
#define _IMAGE_SAVER_H_
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
// Save machine code from target_code to file at out_path. Returns 0 on success
|
|
int save_img(char *out_path, uint32_t *target_code);
|
|
|
|
#endif
|