22 lines
372 B
C
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
|