mem: Add explicit Cache subclass and make BaseCache abstract

Open up for other subclasses to BaseCache and transition to using the
explicit Cache subclass.

--HG--
rename : src/mem/cache/BaseCache.py => src/mem/cache/Cache.py
This commit is contained in:
Andreas Hansson
2015-08-21 07:03:23 -04:00
parent d71a0d790d
commit ddfa96cf45
12 changed files with 39 additions and 34 deletions

View File

@@ -30,7 +30,7 @@
Import('*')
SimObject('BaseCache.py')
SimObject('Cache.py')
Source('base.cc')
Source('cache.cc')