baddev.hh (2665:a124942bacb8) baddev.hh (3349:fec4a86fa212)
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;

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

62 public:
63 /**
64 * Constructor for the Baddev Class.
65 * @param p object parameters
66 * @param a base address of the write
67 */
68 BadDevice(Params *p);
69
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;

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

62 public:
63 /**
64 * Constructor for the Baddev Class.
65 * @param p object parameters
66 * @param a base address of the write
67 */
68 BadDevice(Params *p);
69
70 virtual Tick read(Packet *pkt);
71 virtual Tick write(Packet *pkt);
70 virtual Tick read(PacketPtr pkt);
71 virtual Tick write(PacketPtr pkt);
72};
73
74#endif // __DEV_BADDEV_HH__
72};
73
74#endif // __DEV_BADDEV_HH__