From: Luke Kenneth Casson Leighton Date: Fri, 21 Aug 2020 11:00:15 +0000 (+0100) Subject: comment formatting X-Git-Tag: semi_working_ecp5~283 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=27c55a82f0f082372c0c3ef99f196ebda1af0531;p=soc.git comment formatting --- diff --git a/src/soc/experiment/dcache.py b/src/soc/experiment/dcache.py index 9601b7e4..e46f4999 100644 --- a/src/soc/experiment/dcache.py +++ b/src/soc/experiment/dcache.py @@ -1025,11 +1025,11 @@ class Dcache(Elaboratable): # severity FAILURE; # assert SET_SIZE_BITS <= TLB_LG_PGSZ # report "Set indexed by virtual address" severity FAILURE; - assert (LINE_SIZE % ROW_SIZE) == 0 "LINE_SIZE not - multiple of ROW_SIZE -!- severity FAILURE" + assert (LINE_SIZE % ROW_SIZE) == 0 "LINE_SIZE not " \ + "multiple of ROW_SIZE -!- severity FAILURE" - assert (LINE_SIZE % 2) == 0 "LINE_SIZE not power of - 2 -!- severity FAILURE" + assert (LINE_SIZE % 2) == 0 "LINE_SIZE not power of" \ + "2 -!- severity FAILURE" assert (NUM_LINES % 2) == 0 "NUM_LINES not power of 2 -!- severity FAILURE"