soc/cores/cpu/naxriscv/core: fix arch definition

This commit is contained in:
Gwenhael Goavec-Merou 2024-01-18 15:04:09 +01:00
parent b19d992f23
commit 4222a585c9
1 changed files with 1 additions and 1 deletions

View File

@ -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: