Skip to content

Commit a8d91c0

Browse files
committedMar 28, 2015
sdram/module: fix MT8JTF12864, rowbits is 14 and not 16.... (16 was used from the beginning, but it does not fix the runtime issue)
1 parent 75ee8a5 commit a8d91c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎misoclib/mem/sdram/module.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def __init__(self, clk_freq):
161161
class MT8JTF12864(SDRAMModule):
162162
geom_settings = {
163163
"nbanks": 8,
164-
"nrows": 65536,
164+
"nrows": 16384,
165165
"ncols": 1024
166166
}
167167
timing_settings = {

0 commit comments

Comments
 (0)
Please sign in to comment.