From a8d91c0c1d8d40bd5f978329c22291263a15693b Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Sat, 28 Mar 2015 16:35:15 +0100 Subject: [PATCH] sdram/module: fix MT8JTF12864, rowbits is 14 and not 16.... (16 was used from the beginning, but it does not fix the runtime issue) --- misoclib/mem/sdram/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misoclib/mem/sdram/module.py b/misoclib/mem/sdram/module.py index 75daaab2b..af807b869 100644 --- a/misoclib/mem/sdram/module.py +++ b/misoclib/mem/sdram/module.py @@ -161,7 +161,7 @@ class MT47H128M8(SDRAMModule): class MT8JTF12864(SDRAMModule): geom_settings = { "nbanks": 8, - "nrows": 65536, + "nrows": 16384, "ncols": 1024 } timing_settings = {