Deleted Added
sdiff udiff text old ( 5633:e1605152cc54 ) new ( 5651:7f0c8006c3d7 )
full compact
1/*
2 * Copyright (c) 2008 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

27 *
28 * Authors: Gabe Black
29 */
30
31#ifndef __DEV_X86_INTDEV_HH__
32#define __DEV_X86_INTDEV_HH__
33
34#include <assert.h>
35
36#include "sim/sim_object.hh"
37#include "params/X86IntPin.hh"
38
39namespace X86ISA {
40
41class IntDev
42{
43 public:
44 virtual ~IntDev()
45 {}
46 virtual void
47 signalInterrupt(int line) = 0;
48};
49
50class IntPin : public SimObject
51{
52 protected:
53 IntDev * device;
54 int line;
55

--- 25 unchanged lines hidden ---