From 4222a585c920c516edec6873145356966bc6e0df Mon Sep 17 00:00:00 2001 From: Gwenhael Goavec-Merou Date: Thu, 18 Jan 2024 15:04:09 +0100 Subject: [PATCH] soc/cores/cpu/naxriscv/core: fix arch definition --- litex/soc/cores/cpu/naxriscv/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/cores/cpu/naxriscv/core.py b/litex/soc/cores/cpu/naxriscv/core.py index 294974b2e..da2376258 100755 --- a/litex/soc/cores/cpu/naxriscv/core.py +++ b/litex/soc/cores/cpu/naxriscv/core.py @@ -69,7 +69,7 @@ class NaxRiscv(CPU): # Arch. @staticmethod def get_arch(): - arch = f"rv{NaxRiscv.xlen}ima" + arch = f"rv{NaxRiscv.xlen}i2p0_ma" if NaxRiscv.with_fpu: arch += "fd" if NaxRiscv.with_rvc: