diff --git a/compiler/globals.py b/compiler/globals.py index 87763422..9faf47ac 100644 --- a/compiler/globals.py +++ b/compiler/globals.py @@ -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).")