core.cc (9983:2cce74fe359e) core.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * Copyright (c) 2013 Mark D. Hill and David A. Wood
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are

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

26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
30 * Authors: Nathan Binkert
31 * Steve Reinhardt
32 */
33
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * Copyright (c) 2013 Mark D. Hill and David A. Wood
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are

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

26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
30 * Authors: Nathan Binkert
31 * Steve Reinhardt
32 */
33
34#include "sim/core.hh"
35
34#include <iostream>
35#include <string>
36
37#include "base/callback.hh"
38#include "base/output.hh"
36#include <iostream>
37#include <string>
38
39#include "base/callback.hh"
40#include "base/output.hh"
39#include "sim/core.hh"
40#include "sim/eventq.hh"
41
42using namespace std;
43
44namespace SimClock {
45/// The simulated frequency of curTick(). (In ticks per second)
46Tick Frequency;
47

--- 85 unchanged lines hidden ---
41#include "sim/eventq.hh"
42
43using namespace std;
44
45namespace SimClock {
46/// The simulated frequency of curTick(). (In ticks per second)
47Tick Frequency;
48

--- 85 unchanged lines hidden ---