realview.cc (8739:925f15f96322) realview.cc (8741:491297d019f3)
1/*
2 * Copyright (c) 2009 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

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

55#include "dev/terminal.hh"
56#include "sim/system.hh"
57
58using namespace std;
59using namespace TheISA;
60
61RealView::RealView(const Params *p)
62 : Platform(p), system(p->system)
1/*
2 * Copyright (c) 2009 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

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

55#include "dev/terminal.hh"
56#include "sim/system.hh"
57
58using namespace std;
59using namespace TheISA;
60
61RealView::RealView(const Params *p)
62 : Platform(p), system(p->system)
63{
64#if FULL_SYSTEM //XXX No platform pointer on the system object in SE mode.
65 // set the back pointer from the system to myself
66 system->platform = this;
67#endif
68}
63{}
69
64
70Tick
71RealView::intrFrequency()
72{
73 panic("Need implementation\n");
74 M5_DUMMY_RETURN
75}
76
77void
78RealView::postConsoleInt()
79{
80 warn_once("Don't know what interrupt to post for console.\n");
81 //panic("Need implementation\n");
82}
83
84void

--- 50 unchanged lines hidden ---
65void
66RealView::postConsoleInt()
67{
68 warn_once("Don't know what interrupt to post for console.\n");
69 //panic("Need implementation\n");
70}
71
72void

--- 50 unchanged lines hidden ---