diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-08-02 23:30:25 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-08-02 23:30:25 -0700 |
commit | 121a894ce0d551e860392f9aa6bd381329a25b96 (patch) | |
tree | 3e8b7ded2869c14eb45403a15100d45d247f401b /src/sim/System.py | |
parent | f4b89cd897e15b34f1565f55d7c6ce0c056f361a (diff) | |
parent | 0536d0cde931e89d33b10228950d455dd54d8a5f (diff) | |
download | gem5-121a894ce0d551e860392f9aa6bd381329a25b96.tar.xz |
Merge with head.
--HG--
extra : convert_revision : c8b066289916b3fb24bcae1e9c76e27ad4cf61b1
Diffstat (limited to 'src/sim/System.py')
-rw-r--r-- | src/sim/System.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sim/System.py b/src/sim/System.py index 3f4c57f0c..5712a5c03 100644 --- a/src/sim/System.py +++ b/src/sim/System.py @@ -36,6 +36,8 @@ class MemoryMode(Enum): vals = ['invalid', 'atomic', 'timing'] class System(SimObject): type = 'System' + swig_objdecls = [ '%include "python/swig/system.i"' ] + physmem = Param.PhysicalMemory(Parent.any, "phsyical memory") mem_mode = Param.MemoryMode('atomic', "The mode the memory system is in") if build_env['FULL_SYSTEM']: |