From 651de2d9af8ac628b69b40812ff036231da40ae3 Mon Sep 17 00:00:00 2001 From: Andreas Hansson Date: Fri, 26 Oct 2012 06:42:42 -0400 Subject: config: Fix the cache class naming in regression scripts This patch unifies the naming of the default L1 and L2 caches in the regression configs to be in line with what is used in the se and fs scripts. --- tests/configs/tsunami-inorder.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/configs/tsunami-inorder.py') diff --git a/tests/configs/tsunami-inorder.py b/tests/configs/tsunami-inorder.py index 0d7e817e0..b0aa1c7cd 100644 --- a/tests/configs/tsunami-inorder.py +++ b/tests/configs/tsunami-inorder.py @@ -48,9 +48,9 @@ system.iocache.cpu_side = system.iobus.master system.iocache.mem_side = system.membus.slave #connect up the cpu and caches -cpu.addTwoLevelCacheHierarchy(L1(size = '32kB', assoc = 1), - L1(size = '32kB', assoc = 4), - L2(size = '4MB', assoc = 8)) +cpu.addTwoLevelCacheHierarchy(L1Cache(size = '32kB', assoc = 1), + L1Cache(size = '32kB', assoc = 4), + L2Cache(size = '4MB', assoc = 8)) # create the interrupt controller cpu.createInterruptController() # connect cpu and caches to the rest of the system -- cgit v1.2.3