From 27c55a82f0f082372c0c3ef99f196ebda1af0531 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Fri, 21 Aug 2020 12:00:15 +0100 Subject: [PATCH] comment formatting --- src/soc/experiment/dcache.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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" -- 2.30.2