Increase size for warning of column mux limit

This commit is contained in:
Matt Guthaus 2018-12-06 13:57:38 -08:00
parent 3f1fbc3d90
commit 514f6fda27
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ class sram_config:
elif tentative_num_cols < 6*word_size:
return 4
else:
if tentative_num_cols > 10*word_size:
if tentative_num_cols > 16*word_size:
debug.warning("Reaching column mux size limit. Consider increasing above 8-way.")
return 8