Assembler/header/image_saver.h

11 lines
230 B
C
Raw Normal View History

2023-01-12 00:12:12 +01:00
#ifndef _IMAGE_SAVER_H_
#define _IMAGE_SAVER_H_
2023-02-13 10:28:28 +01:00
#include <stdio.h>
#include <stdint.h>
2023-02-13 10:28:28 +01:00
// 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);
2023-01-12 00:12:12 +01:00
#endif