Enhancements to python config proxy class.
[gem5.git] / python / m5 / objects / BaseSystem.mpy
1 simobj BaseSystem(SimObject):
2 type = 'BaseSystem'
3 abstract = True
4 memctrl = Param.MemoryController(parent.any, "memory controller")
5 physmem = Param.PhysicalMemory(parent.any, "phsyical memory")
6 kernel = Param.String("file that contains the kernel code")
7 console = Param.String("file that contains the console code")
8 pal = Param.String("file that contains palcode")
9 readfile = Param.String("", "file to read startup script from")
10 init_param = Param.UInt64(0, "numerical value to pass into simulator")
11 boot_osflags = Param.String("a", "boot flags to pass to the kernel")
12 system_type = Param.UInt64("Type of system we are emulating")
13 system_rev = Param.UInt64("Revision of system we are emulating")
14 bin = Param.Bool(False, "is this system binned")
15 binned_fns = VectorParam.String([], "functions broken down and binned")