Add output on number of ports.

This commit is contained in:
Matt Guthaus 2018-12-06 11:58:34 -08:00
parent b72382b400
commit b7bbc9b994
1 changed files with 3 additions and 0 deletions

View File

@ -412,6 +412,9 @@ def report_status():
print("Word size: {0}\nWords: {1}\nBanks: {2}".format(OPTS.word_size,
OPTS.num_words,
OPTS.num_banks))
print("RW ports: {0}\nR-only ports: {1}\nW-only ports: {2}".format(OPTS.num_rw_ports,
OPTS.num_r_ports,
OPTS.num_w_ports))
if OPTS.netlist_only:
print("Netlist only mode (no physical design is being done).")