baddev.cc (10069:17c8cf9907e1) baddev.cc (11793:ef606668d247)
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
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 "dev/baddev.hh"
36
35#include <string>
36
37#include "base/trace.hh"
37#include <string>
38
39#include "base/trace.hh"
38#include "dev/baddev.hh"
39#include "params/BadDevice.hh"
40#include "sim/system.hh"
41
42using namespace std;
43
44BadDevice::BadDevice(Params *p)
45 : BasicPioDevice(p, 0x10), devname(p->devicename)
46{

--- 21 unchanged lines hidden ---
40#include "params/BadDevice.hh"
41#include "sim/system.hh"
42
43using namespace std;
44
45BadDevice::BadDevice(Params *p)
46 : BasicPioDevice(p, 0x10), devname(p->devicename)
47{

--- 21 unchanged lines hidden ---