From bd53a1b474401b8311d9afa0c9f1e113f7e32061 Mon Sep 17 00:00:00 2001 From: Ved Shanbhogue Date: Wed, 10 Jan 2024 17:33:44 -0600 Subject: fix merge issue --- riscv/csrs.cc | 3 --- 1 file changed, 3 deletions(-) (limited to 'riscv/csrs.cc') diff --git a/riscv/csrs.cc b/riscv/csrs.cc index 38c9a10..0564fb9 100644 --- a/riscv/csrs.cc +++ b/riscv/csrs.cc @@ -668,9 +668,6 @@ bool misa_csr_t::unlogged_write(const reg_t val) noexcept { proc->set_extension_enable(EXT_ZVFHMIN, new_misa & (1L << ('V' - 'A'))); proc->set_extension_enable(EXT_ZAAMO, (new_misa & (1L << ('A' - 'A'))) || !proc->get_isa().extension_enabled('A')); proc->set_extension_enable(EXT_ZALRSC, (new_misa & (1L << ('A' - 'A'))) || !proc->get_isa().extension_enabled('A')); - proc->set_extension_enable(EXT_ZBA, (new_misa & (1L << ('B' - 'A'))) || !proc->get_isa().extension_enabled('B')); - proc->set_extension_enable(EXT_ZBB, (new_misa & (1L << ('B' - 'A'))) || !proc->get_isa().extension_enabled('B')); - proc->set_extension_enable(EXT_ZBS, (new_misa & (1L << ('B' - 'A'))) || !proc->get_isa().extension_enabled('B')); proc->set_extension_enable(EXT_ZBA, (new_misa & (1L << ('B' - 'A'))) || !proc->get_isa().extension_enabled('B')); proc->set_extension_enable(EXT_ZBB, (new_misa & (1L << ('B' - 'A'))) || !proc->get_isa().extension_enabled('B')); -- cgit v1.1