system.cc (7650:42684e4656e6) system.cc (7723:ee4ac00d0774)
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

39 *
40 * Authors: Ali Saidi
41 */
42
43#include "arch/arm/system.hh"
44#include <iostream>
45
46using namespace std;
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

39 *
40 * Authors: Ali Saidi
41 */
42
43#include "arch/arm/system.hh"
44#include <iostream>
45
46using namespace std;
47using namespace ArmISA;
48using namespace Linux;
49
50ArmSystem::ArmSystem(Params *p)
51 : System(p)
52{
53 debugPrintkEvent = addKernelFuncEvent<DebugPrintkEvent>("dprintk");
54
55}

--- 12 unchanged lines hidden ---
47using namespace Linux;
48
49ArmSystem::ArmSystem(Params *p)
50 : System(p)
51{
52 debugPrintkEvent = addKernelFuncEvent<DebugPrintkEvent>("dprintk");
53
54}

--- 12 unchanged lines hidden ---