Ruby.py (11670:6ce719503eae) Ruby.py (11682:612f75cf36a0)
1# Copyright (c) 2012 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

40# Authors: Brad Beckmann
41
42import math
43import m5
44from m5.objects import *
45from m5.defines import buildEnv
46from m5.util import addToPath, fatal
47
1# Copyright (c) 2012 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

40# Authors: Brad Beckmann
41
42import math
43import m5
44from m5.objects import *
45from m5.defines import buildEnv
46from m5.util import addToPath, fatal
47
48import MemConfig
48from common import MemConfig
49
50from topologies import *
51from network import Network
52
53def define_options(parser):
54 # By default, ruby uses the simple timing cpu
55 parser.set_defaults(cpu_type="timing")
56

--- 161 unchanged lines hidden ---
49
50from topologies import *
51from network import Network
52
53def define_options(parser):
54 # By default, ruby uses the simple timing cpu
55 parser.set_defaults(cpu_type="timing")
56

--- 161 unchanged lines hidden ---