ARM: Show branch targets relative to the nearest symbol.
[gem5.git] / src / sim / System.py
index 3f4c57f0c96f9717e9dccea4440d9dcad967091d..3b0bc1e46254bba00ef5f0eea2ada60211cce8f7 100644 (file)
@@ -36,7 +36,9 @@ class MemoryMode(Enum): vals = ['invalid', 'atomic', 'timing']
 
 class System(SimObject):
     type = 'System'
-    physmem = Param.PhysicalMemory(Parent.any, "phsyical memory")
+    swig_objdecls = [ '%include "python/swig/system.i"' ]
+
+    physmem = Param.PhysicalMemory(Parent.any, "physical memory")
     mem_mode = Param.MemoryMode('atomic', "The mode the memory system is in")
     if build_env['FULL_SYSTEM']:
         abstract = True