mirror of https://github.com/VLSIDA/OpenRAM.git
Add output on number of ports.
This commit is contained in:
parent
b72382b400
commit
b7bbc9b994
|
|
@ -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).")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue