main.py (13671:b288ca1bcae8) | main.py (13674:45580dbf73a9) |
---|---|
1# Copyright (c) 2016 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 --- 179 unchanged lines hidden (view full) --- 188 ipshell() 189 else: 190 # Use the Python shell in the standard library if IPython 191 # isn't available. 192 code.InteractiveConsole(scope).interact(banner) 193 194 195def _check_tracing(): | 1# Copyright (c) 2016 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 --- 179 unchanged lines hidden (view full) --- 188 ipshell() 189 else: 190 # Use the Python shell in the standard library if IPython 191 # isn't available. 192 code.InteractiveConsole(scope).interact(banner) 193 194 195def _check_tracing(): |
196 import defines 197 |
|
196 if defines.TRACING_ON: 197 return 198 199 fatal("Tracing is not enabled. Compile with TRACING_ON") 200 201def main(*args): 202 import m5 203 --- 249 unchanged lines hidden --- | 198 if defines.TRACING_ON: 199 return 200 201 fatal("Tracing is not enabled. Compile with TRACING_ON") 202 203def main(*args): 204 import m5 205 --- 249 unchanged lines hidden --- |