Skip to content

Commit

Permalink
sdram/module: fix MT8JTF12864, rowbits is 14 and not 16.... (16 was u…
Browse files Browse the repository at this point in the history
…sed from the beginning, but it does not fix the runtime issue)
  • Loading branch information
enjoy-digital committed Mar 28, 2015
1 parent 75ee8a5 commit a8d91c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misoclib/mem/sdram/module.py
Expand Up @@ -161,7 +161,7 @@ def __init__(self, clk_freq):
class MT8JTF12864(SDRAMModule):
geom_settings = {
"nbanks": 8,
"nrows": 65536,
"nrows": 16384,
"ncols": 1024
}
timing_settings = {
Expand Down

0 comments on commit a8d91c0

Please sign in to comment.