From 24c593e715d9b1ca881238fdd7a5462fdf3d098e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A0rius=20Mont=C3=B3n?= Date: Mon, 8 Nov 2021 09:21:19 +0100 Subject: [PATCH] JALR cannot be const because calls RaiseException --- inc/BASE_ISA.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/BASE_ISA.h b/inc/BASE_ISA.h index 55d0164..cbb0847 100644 --- a/inc/BASE_ISA.h +++ b/inc/BASE_ISA.h @@ -271,7 +271,7 @@ public: bool Exec_AUIPC() const; bool Exec_JAL() const; - bool Exec_JALR() const; + bool Exec_JALR(); bool Exec_BEQ() const; bool Exec_BNE() const; @@ -315,7 +315,7 @@ public: bool Exec_AND() const; bool Exec_FENCE() const; - bool Exec_ECALL() const; + bool Exec_ECALL(); bool Exec_EBREAK(); bool Exec_CSRRW() const;