cores/cpu/femtorv: Switch to upstream femtorv32_quark (patched version can now be avoided).

This commit is contained in:
Florent Kermarrec 2021-11-19 12:24:59 +01:00
parent af6b6c94b8
commit 605b6aff7c
1 changed files with 1 additions and 2 deletions

View File

@ -143,8 +143,7 @@ class FemtoRV(CPU):
def add_sources(platform): def add_sources(platform):
if not os.path.exists("femtorv32_quark.v"): if not os.path.exists("femtorv32_quark.v"):
# Get FemtoRV32 source. # Get FemtoRV32 source.
os.system("wget https://github.com/enjoy-digital/litex/files/7487578/femtorv32_quark.v.txt") os.system("wget https://raw.githubusercontent.com/BrunoLevy/learn-fpga/master/FemtoRV/RTL/PROCESSOR/femtorv32_quark.v")
os.system("mv femtorv32_quark.v.txt femtorv32_quark.v")
platform.add_source("femtorv32_quark.v") platform.add_source("femtorv32_quark.v")
def do_finalize(self): def do_finalize(self):