mirror of
https://github.com/litex-hub/litex-boards.git
synced 2025-01-03 03:43:36 -05:00
efinix_xyloni_dev_kit: Only force variant to minimal for Vexriscv.
This commit is contained in:
parent
75fd276dbe
commit
394ea23b99
1 changed files with 2 additions and 1 deletions
|
@ -56,7 +56,8 @@ class BaseSoC(SoCCore):
|
|||
kwargs["integrated_rom_size"] = 0
|
||||
|
||||
# Set CPU variant / reset address
|
||||
kwargs["cpu_variant"] = "minimal"
|
||||
if kwargs.get("cpu_type", "vexriscv") == "vexriscv":
|
||||
kwargs["cpu_variant"] = "minimal"
|
||||
kwargs["cpu_reset_address"] = self.mem_map["spiflash"] + bios_flash_offset
|
||||
|
||||
# SoCCore ----------------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue