Add argp, and executing functionality

This commit is contained in:
XOR 2023-10-17 16:41:38 +02:00
parent 0c8d7b57cb
commit b42d5e7e67
11 changed files with 269 additions and 28 deletions

9
header/helpers.h Normal file
View file

@ -0,0 +1,9 @@
#ifndef _HELPER_H_
#define _HELPER_H_
#include <stdint.h>
#include <stdio.h>
void print_target_code(uint32_t *target_code);
#endif