r16/emu/main.c
Rose Apollo 062b44b4f1 cpu
2024-04-19 12:39:59 +00:00

15 lines
283 B
C

#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
#include "../lib/carg-parse/carg-parse.h"
#include "./cpu_const.h"
#include "./cpu.h"
int main(int argc, char **argv)
{
carg_parse_data* args = carg_parse(argc, argv);
carg_parse_free(args);
}