se.py (8801:1a84c6a81299) se.py (8803:f6c5785bc8fd)
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

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

47import sys
48from os.path import join as joinpath
49
50import m5
51from m5.defines import buildEnv
52from m5.objects import *
53from m5.util import addToPath, fatal
54
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

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

47import sys
48from os.path import join as joinpath
49
50import m5
51from m5.defines import buildEnv
52from m5.objects import *
53from m5.util import addToPath, fatal
54
55if buildEnv['FULL_SYSTEM']:
56 fatal("This script requires syscall emulation mode (*_SE).")
57
58addToPath('../common')
59addToPath('../ruby')
60
61import Ruby
62
63import Simulation
64import CacheConfig
65from Caches import *

--- 140 unchanged lines hidden ---
55addToPath('../common')
56addToPath('../ruby')
57
58import Ruby
59
60import Simulation
61import CacheConfig
62from Caches import *

--- 140 unchanged lines hidden ---