summaryrefslogtreecommitdiff
path: root/python/m5/objects/BaseSystem.mpy
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2005-03-11 18:32:36 -0500
committerNathan Binkert <binkertn@umich.edu>2005-03-11 18:32:36 -0500
commite6902a907e333c09d64d520f4c978edf7e098f6a (patch)
tree5b0acd0444285290365fbead19f081b8f3ebdd9a /python/m5/objects/BaseSystem.mpy
parentb1f41a7aa0f617014d2bf6d5d3675830ffac213c (diff)
parentfa1650a08e56b176c2b31cd5c3b8939820e93884 (diff)
downloadgem5-e6902a907e333c09d64d520f4c978edf7e098f6a.tar.xz
Merge zizzer.eecs.umich.edu:/z/m5/Bitkeeper/m5
into ziff.eecs.umich.edu:/z/binkertn/research/m5/current --HG-- extra : convert_revision : abc24d21097770ad323a2c0d537d3e9424db0d7d
Diffstat (limited to 'python/m5/objects/BaseSystem.mpy')
-rw-r--r--python/m5/objects/BaseSystem.mpy15
1 files changed, 15 insertions, 0 deletions
diff --git a/python/m5/objects/BaseSystem.mpy b/python/m5/objects/BaseSystem.mpy
new file mode 100644
index 000000000..1cbdf4e99
--- /dev/null
+++ b/python/m5/objects/BaseSystem.mpy
@@ -0,0 +1,15 @@
+simobj BaseSystem(SimObject):
+ type = 'BaseSystem'
+ abstract = True
+ memctrl = Param.MemoryController(Super, "memory controller")
+ physmem = Param.PhysicalMemory(Super, "phsyical memory")
+ kernel = Param.String("file that contains the kernel code")
+ console = Param.String("file that contains the console code")
+ pal = Param.String("file that contains palcode")
+ readfile = Param.String("", "file to read startup script from")
+ init_param = Param.UInt64(0, "numerical value to pass into simulator")
+ boot_osflags = Param.String("a", "boot flags to pass to the kernel")
+ system_type = Param.UInt64("Type of system we are emulating")
+ system_rev = Param.UInt64("Revision of system we are emulating")
+ bin = Param.Bool(False, "is this system binned")
+ binned_fns = VectorParam.String([], "functions broken down and binned")