Deleted Added
sdiff udiff text old ( 10537:47fe87b0cf97 ) new ( 11244:a2af58a06c4e )
full compact
1/*
2 * Copyright (c) 2009, 2014 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

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

53#include "dev/arm/base_gic.hh"
54#include "dev/arm/realview.hh"
55#include "dev/terminal.hh"
56#include "sim/system.hh"
57
58using namespace std;
59using namespace TheISA;
60
61
62RealView::RealView(const Params *p)
63 : Platform(p), system(p->system), gic(nullptr)
64{}
65
66void
67RealView::postConsoleInt()
68{
69 warn_once("Don't know what interrupt to post for console.\n");
70 //panic("Need implementation\n");
71}
72
73void
74RealView::clearConsoleInt()

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

84}
85
86void
87RealView::clearPciInt(int line)
88{
89 gic->clearInt(line);
90}
91
92RealView *
93RealViewParams::create()
94{
95 return new RealView(this);
96}