From: Florent Kermarrec Date: Thu, 16 Apr 2020 08:22:43 +0000 (+0200) Subject: litex_sim: add phytype to PhySettings. X-Git-Tag: 24jan2021_ls180~453 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3915ed97607ab1fce9bd8637063329da07edf020;p=litex.git litex_sim: add phytype to PhySettings. --- diff --git a/litex/tools/litex_sim.py b/litex/tools/litex_sim.py index 1efea94d..8ac544fc 100755 --- a/litex/tools/litex_sim.py +++ b/litex/tools/litex_sim.py @@ -141,6 +141,7 @@ def get_sdram_phy_settings(memtype, data_width, clk_freq): } return PhySettings( + phytype = "SDRAMPHYModel", memtype = memtype, databits = data_width, dfi_databits = data_width if memtype == "SDR" else 2*data_width,