checkpoint.py (10751:11d4a587d43a) checkpoint.py (11682:612f75cf36a0)
1# Copyright (c) 2015 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

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

35#
36# Authors: Andreas Sandberg
37
38from multiprocessing import Process
39import sys
40import os
41
42import m5
1# Copyright (c) 2015 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

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

35#
36# Authors: Andreas Sandberg
37
38from multiprocessing import Process
39import sys
40import os
41
42import m5
43m5.util.addToPath('../configs/common')
44
45_exit_normal = (
46 "target called exit()",
47 "m5_exit instruction encountered",
48 )
49
50_exit_limit = (
51 "simulate() limit reached",

--- 82 unchanged lines hidden ---
43
44_exit_normal = (
45 "target called exit()",
46 "m5_exit instruction encountered",
47 )
48
49_exit_limit = (
50 "simulate() limit reached",

--- 82 unchanged lines hidden ---