38c38
< system.l2 = L2Cache(size='2MB')
---
> system.l2 = L2Cache(size = options.l2_size, assoc = options.l2_assoc)
45a46,47
> icache = L1Cache(size = options.l1i_size, assoc = options.l1i_assoc)
> dcache = L1Cache(size = options.l1d_size, assoc = options.l1d_assoc)
47,48c49
< system.cpu[i].addPrivateSplitL1Caches(L1Cache(size = '32kB'),
< L1Cache(size = '64kB'),
---
> system.cpu[i].addPrivateSplitL1Caches(icache, dcache,
52,53c53
< system.cpu[i].addPrivateSplitL1Caches(L1Cache(size = '32kB'),
< L1Cache(size = '64kB'))
---
> system.cpu[i].addPrivateSplitL1Caches(icache, dcache)