From 3915ed97607ab1fce9bd8637063329da07edf020 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Thu, 16 Apr 2020 10:22:43 +0200 Subject: [PATCH] litex_sim: add phytype to PhySettings. --- litex/tools/litex_sim.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litex/tools/litex_sim.py b/litex/tools/litex_sim.py index 1efea94d3..8ac544fcb 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,