Deleted Added
sdiff udiff text old ( 9808:13ffc0066b76 ) new ( 10069:17c8cf9907e1 )
full compact
1/*
2 * Copyright (c) 2004-2005 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: Ali Saidi
29 */
30
31/** @file
32 * BadDevice implemenation
33 */
34
35#include <deque>
36#include <string>
37#include <vector>
38
39#include "base/trace.hh"
40#include "config/the_isa.hh"
41#include "dev/baddev.hh"
42#include "mem/port.hh"
43#include "params/BadDevice.hh"
44#include "sim/system.hh"
45
46using namespace std;
47
48BadDevice::BadDevice(Params *p)
49 : BasicPioDevice(p, 0x10), devname(p->devicename)
50{

--- 21 unchanged lines hidden ---