blob: e430cede321cdd79394367e5721ca6c66140d1fc (
plain)
1
2
3
4
5
6
7
8
9
|
from m5.params import *
from m5.proxy import *
from m5.SimObject import SimObject
class RubyDirectoryMemory(SimObject):
type = 'RubyDirectoryMemory'
cxx_class = 'DirectoryMemory'
version = Param.Int(0, "")
size = Param.MemorySize("1GB", "capacity in bytes")
|