cpu/NaxRiscv fix with_fpu typo

This commit is contained in:
Dolu1990 2023-02-10 10:07:50 +01:00 committed by GitHub
parent ac9bb70245
commit 92032b446c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ class NaxRiscv(CPU):
for file in NaxRiscv.scala_paths:
gen_args.append(f"--scala-file={file}")
if(NaxRiscv.with_fpu):
gen_args.append(f"--scala-args='rvf=true,rvd=true")
gen_args.append(f"--scala-args=rvf=true,rvd=true")
cmd = f"""cd {ndir} && sbt "runMain naxriscv.platform.LitexGen {" ".join(gen_args)}\""""
print("NaxRiscv generation command :")