r16/asm/main.c

14 lines
257 B
C
Raw Normal View History

2024-04-22 13:05:10 +00:00
#include "../lib/carg-parse/carg-parse.h"
#include "./asm_const.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
int main(int argc, char **argv)
{
carg_parse_data* args = carg_parse(argc, argv);
carg_parse_free(args);
return 0;
}