r16/asm/main.c

16 lines
317 B
C
Raw Normal View History

2024-04-22 13:05:10 +00:00
#include "../emu/cpu_const.h"
#include "../emu/cpu_human.h"
#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;
}