diff options
Diffstat (limited to 'python/m5/objects/MemObject.py')
-rw-r--r-- | python/m5/objects/MemObject.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/m5/objects/MemObject.py b/python/m5/objects/MemObject.py new file mode 100644 index 000000000..4d68243e6 --- /dev/null +++ b/python/m5/objects/MemObject.py @@ -0,0 +1,5 @@ +from m5 import * + +class MemObject(SimObject): + type = 'MemObject' + abstract = True |