[DV] add support_unaligned_load_store setting (#521)

Signed-off-by: Udi <udij@google.com>
This commit is contained in:
udinator 2019-12-13 13:44:18 -08:00 committed by taoliug
parent f23b3f39fa
commit 8568e6b3b5

View file

@ -31,6 +31,9 @@ privileged_mode_t supported_privileged_mode[] = {MACHINE_MODE, USER_MODE};
// FENCE.I is intentionally treated as illegal instruction by ibex core
riscv_instr_name_t unsupported_instr[] = {FENCE_I};
// Specify whether processor supports unaligned loads and stores
bit support_unaligned_load_store = 1'b1;
// ISA supported by the processor
riscv_instr_group_t supported_isa[$] = {RV32I, RV32M, RV32C};