vriscv/src/vriscv.h
2023-10-08 22:54:09 +02:00

22 lines
372 B
C

#ifndef VRISCV_H
#define VRISCV_H
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#define NAME "vriscv"
#define VERSION "0.1"
extern char* CURRENT_NAME;
/* Program options */
extern size_t memory_size;
extern char* file_path;
extern bool gdbstub;
extern bool trace;
void parse_options(int argc, char** argv);
#endif