Assembler/header/image_saver.h
2023-01-12 00:12:12 +01:00

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