From cdef5f0ecb58fe53ff065d63a6031a7bfa92489a Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Wed, 9 Jan 2019 16:57:12 -0800 Subject: [PATCH] Change kbits to bits in output --- compiler/globals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/globals.py b/compiler/globals.py index 5843e41c..a6360e24 100644 --- a/compiler/globals.py +++ b/compiler/globals.py @@ -414,7 +414,7 @@ def report_status(): debug.error("Tech name must be specified in config file.") print("Technology: {0}".format(OPTS.tech_name)) - print("Total size: {} kbits".format(OPTS.word_size*OPTS.num_words*OPTS.num_banks)) + print("Total size: {} bits".format(OPTS.word_size*OPTS.num_words*OPTS.num_banks)) print("Word size: {0}\nWords: {1}\nBanks: {2}".format(OPTS.word_size, OPTS.num_words, OPTS.num_banks))