diff options
Diffstat (limited to 'tests/configs/realview-o3.py')
-rw-r--r-- | tests/configs/realview-o3.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/configs/realview-o3.py b/tests/configs/realview-o3.py index 6f98309fe..6dbc0c828 100644 --- a/tests/configs/realview-o3.py +++ b/tests/configs/realview-o3.py @@ -45,9 +45,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 |