40d39
< assoc = 2
42d40
< size = 32768
48d45
< assoc = 16
50d46
< size = 1048576
77,79c73,78
< l1i_cache = L1Cache()
< l1d_cache = L1Cache()
< l2_cache = L2Cache()
---
> l1i_cache = L1Cache(size = options.l1i_size,
> assoc = options.l1i_assoc)
> l1d_cache = L1Cache(size = options.l1d_size,
> assoc = options.l1d_assoc)
> l2_cache = L2Cache(size = options.l2_size,
> assoc = options.l2_assoc)