Deleted Added
sdiff udiff text old ( 7914:eee5bb0fb8ea ) new ( 8460:3893d9d2c6c2 )
full compact
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# Copyright (c) 2011 Regents of the University of California
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

--- 30 unchanged lines hidden (view full) ---

39
40class System(SimObject):
41 type = 'System'
42
43 @classmethod
44 def swig_objdecls(cls, code):
45 code('%include "python/swig/system.i"')
46
47 physmem = Param.PhysicalMemory(Parent.any, "physical memory")
48 mem_mode = Param.MemoryMode('atomic', "The mode the memory system is in")
49
50 work_item_id = Param.Int(-1, "specific work item id")
51 work_begin_cpu_id_exit = Param.Int(-1,
52 "work started on specific id, now exit simulation")
53 work_begin_ckpt_count = Param.Counter(0,
54 "create checkpoint when work items begin count value is reached")
55 work_begin_exit_count = Param.Counter(0,
56 "exit simulation when work items begin count value is reached")

--- 18 unchanged lines hidden ---