r16/emu/main.c

15 lines
283 B
C
Raw Normal View History

2024-04-19 09:05:10 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
#include "../lib/carg-parse/carg-parse.h"
#include "./cpu_const.h"
2024-04-19 12:39:59 +00:00
#include "./cpu.h"
2024-04-19 09:05:10 +00:00
int main(int argc, char **argv)
{
carg_parse_data* args = carg_parse(argc, argv);
carg_parse_free(args);
}