cpu/microwatt: add pythondata and fix build with it.

This commit is contained in:
Florent Kermarrec 2020-05-04 08:46:25 +02:00
parent 45377d9faa
commit c06a127909
2 changed files with 3 additions and 4 deletions

View File

@ -102,9 +102,7 @@ class Microwatt(CPU):
@staticmethod
def add_sources(platform):
sdir = os.path.join(
get_data_mod("cpu", "microwatt").data_location,
"sources")
sdir = get_data_mod("cpu", "microwatt").data_location
platform.add_sources(sdir,
# Common / Types / Helpers
"decode_types.vhdl",
@ -157,7 +155,7 @@ class Microwatt(CPU):
"core_debug.vhdl",
"core.vhdl",
)
platform.add_source(os.path.join(sdir, "..", "microwatt_wrapper.vhdl"))
platform.add_source(os.path.join(os.path.dirname(__file__), "microwatt_wrapper.vhdl"))
def do_finalize(self):
self.specials += Instance("microwatt_wrapper", **self.cpu_params)

View File

@ -47,6 +47,7 @@ repos = [
("pythondata-cpu-vexriscv", ("https://github.com/litex-hub/", False, True)),
("pythondata-cpu-rocket", ("https://github.com/litex-hub/", False, True)),
("pythondata-cpu-minerva", ("https://github.com/litex-hub/", False, True)),
("pythondata-cpu-microwatt", ("https://github.com/litex-hub/", False, True)),
]
repos = OrderedDict(repos)