Assembler/header/image_saver.h
2023-02-13 10:28:28 +01:00

9 lines
212 B
C

#ifndef _IMAGE_SAVER_H_
#define _IMAGE_SAVER_H_
#include <stdio.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