From: Luke Kenneth Casson Leighton Date: Tue, 11 Apr 2023 16:37:13 +0000 (+0100) Subject: reduce lines-per-page estimate in optables X-Git-Tag: opf_rfc_ls012_v1~1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bb7d48d956c556bba3b9f6da513f6c7e4d61b11b;p=libreriscv.git reduce lines-per-page estimate in optables --- diff --git a/openpower/sv/rfc/ls012_optable.py b/openpower/sv/rfc/ls012_optable.py index ef5cf9e6a..1847addee 100644 --- a/openpower/sv/rfc/ls012_optable.py +++ b/openpower/sv/rfc/ls012_optable.py @@ -106,9 +106,9 @@ def print_table(title, header, areas, sortby): for title, rows in areas.items(): # start new page (if not first newpage) if linecount is not None: - # allow 60 rows per page + # allow 58 rows per page linecount += len(rows) - if linecount >= 60: + if linecount >= 58: linecount = 0 if linecount == 0: f.write("\\newpage{}\n")