remove debug print
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 25 Jun 2018 08:04:19 +0000 (09:04 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 25 Jun 2018 08:04:19 +0000 (09:04 +0100)
src/bsv/pinmux_generator.py

index f0d2588ae2d35c1eea22a8238ddaf31b300e55bb..6b4ae07aed69a56ad0b096c5148a2c87f9b265c9 100644 (file)
@@ -113,7 +113,6 @@ def get_cell_bit_width(p):
     max_num_cells = 0
     for cell in p.muxed_cells:
         max_num_cells = max(len(cell) - 1, max_num_cells)
-        print max_num_cells, cell, int(math.ceil(math.log(max_num_cells, 2)))
     return int(math.log(max_num_cells+1, 2))