Move yes_no_maybe_t into riscv.h.

Change-Id: I5bbdc1af3147e05e25612bf496f409111248c979
This commit is contained in:
Tim Newsome 2023-02-08 11:02:20 -08:00
parent 9c3a4b458c
commit 91552c7999
2 changed files with 6 additions and 6 deletions

View File

@ -116,12 +116,6 @@ struct trigger {
int unique_id;
};
typedef enum {
YNM_MAYBE,
YNM_YES,
YNM_NO
} yes_no_maybe_t;
#define HART_INDEX_MULTIPLE -1
#define HART_INDEX_UNKNOWN -2

View File

@ -41,6 +41,12 @@ typedef uint64_t riscv_reg_t;
typedef uint32_t riscv_insn_t;
typedef uint64_t riscv_addr_t;
typedef enum {
YNM_MAYBE,
YNM_YES,
YNM_NO
} yes_no_maybe_t;
enum riscv_mem_access_method {
RISCV_MEM_ACCESS_UNSPECIFIED,
RISCV_MEM_ACCESS_PROGBUF,