targets/digilent_netfpga_sume.py: Limit mapped SDRAM size as on other targets.
This commit is contained in:
parent
223367d6b6
commit
8f1350ec40
|
@ -78,7 +78,8 @@ class BaseSoC(SoCCore):
|
|||
self.add_sdram("sdram",
|
||||
phy = self.ddrphy,
|
||||
module = MT8KTF51264(sys_clk_freq, "1:4"),
|
||||
l2_cache_size = kwargs.get("l2_size", 8192)
|
||||
size = 0x40000000,
|
||||
l2_cache_size = kwargs.get("l2_size", 8192),
|
||||
)
|
||||
|
||||
# Ethernet / Etherbone ---------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue