From b7bbc9b994bb57cf972e055c8eb5332e8e37f891 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Thu, 6 Dec 2018 11:58:34 -0800 Subject: [PATCH] Add output on number of ports. --- compiler/globals.py | 3 +++ 1 file changed, 3 insertions(+) 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).")