mirror of https://github.com/VLSIDA/OpenRAM.git
fixed area rounding
This commit is contained in:
parent
b4f1d53a1b
commit
0cabee060d
|
|
@ -615,7 +615,7 @@ def parse_characterizer_csv(f, pages):
|
|||
new_sheet.io_table.add_row(['NUM_R_PORTS', NUM_R_PORTS])
|
||||
new_sheet.io_table.add_row(['NUM_W_PORTS', NUM_W_PORTS])
|
||||
new_sheet.io_table.add_row(
|
||||
['Area (µm<sup>2</sup>)', AREA])
|
||||
['Area (µm<sup>2</sup>)', str(round(float(AREA)))])
|
||||
|
||||
|
||||
class datasheet_gen():
|
||||
|
|
|
|||
Loading…
Reference in New Issue