# BaseSoC ------------------------------------------------------------------------------------------
class BaseSoC(SoCCore):
- def __init__(self, toolchain, sys_clk_freq=int(100e6), with_ethernet=False, with_etherbone=False, **kwargs):
+ def __init__(self, toolchain="vivado", sys_clk_freq=int(100e6), with_ethernet=False, with_etherbone=False, **kwargs):
platform = arty.Platform(toolchain=toolchain)
# SoCCore ----------------------------------------------------------------------------------
self.assertEqual(errors, 0)
def test_arty_symbiflow(self):
- from litex.boards.targets.arty_symbiflow import BaseSoC
+ from litex.boards.targets.arty import BaseSoC
errors = build_test([
- BaseSoC(**test_kwargs)
+ BaseSoC(toolchain="symbiflow", **test_kwargs)
])
self.assertEqual(errors, 0)