targets/nexys4ddr: fix sdcard assert.

This commit is contained in:
Florent Kermarrec 2020-05-28 15:31:33 +02:00
parent 76cc112ecf
commit c4f96318ec
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ def main():
soc = BaseSoC(sys_clk_freq=int(float(args.sys_clk_freq)), soc = BaseSoC(sys_clk_freq=int(float(args.sys_clk_freq)),
with_ethernet=args.with_ethernet, with_ethernet=args.with_ethernet,
**soc_sdram_argdict(args)) **soc_sdram_argdict(args))
assert not (args.with_spi_sdcard and args.with_spi_sdcard) assert not (args.with_spi_sdcard and args.with_sdcard)
if args.with_spi_sdcard: if args.with_spi_sdcard:
soc.add_spi_sdcard() soc.add_spi_sdcard()
if args.with_sdcard: if args.with_sdcard: