efinix_trion_t120_bga576: Set no_we on integrated_main_ram.

To allow --integrated-main-ram-size use.
This commit is contained in:
Florent Kermarrec 2021-10-14 10:19:18 +02:00
parent 430918756d
commit 2ea803b7d1
1 changed files with 3 additions and 2 deletions

View File

@ -46,8 +46,9 @@ class BaseSoC(SoCCore):
SoCCore.__init__(self, platform, sys_clk_freq,
#ident = "LiteX SoC on Efinix Trion T120 BGA576 Dev Kit", # FIXME: Crash design.
#ident_version = True,
integrated_rom_no_we = True, # FIXME: Avoid this.
integrated_sram_no_we = True, # FIXME: Avoid this.
integrated_rom_no_we = True, # FIXME: Avoid this.
integrated_sram_no_we = True, # FIXME: Avoid this.
integrated_main_ram_no_we = True, # FIXME: Avoid this.
**kwargs
)