You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
372 B
21 lines
372 B
#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
|
|
|