isa_fake.hh (2665:a124942bacb8) isa_fake.hh (2982:0ecdb0879b14)
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;

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

60 /**
61 * The constructor for Tsunmami Fake just registers itself with the MMU.
62 * @param p params structure
63 */
64 IsaFake(Params *p);
65
66 /**
67 * This read always returns -1.
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;

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

60 /**
61 * The constructor for Tsunmami Fake just registers itself with the MMU.
62 * @param p params structure
63 */
64 IsaFake(Params *p);
65
66 /**
67 * This read always returns -1.
68 * @param req The memory request.
68 * @param pkt The memory request.
69 * @param data Where to put the data.
70 */
71 virtual Tick read(Packet *pkt);
72
73 /**
74 * All writes are simply ignored.
69 * @param data Where to put the data.
70 */
71 virtual Tick read(Packet *pkt);
72
73 /**
74 * All writes are simply ignored.
75 * @param req The memory request.
75 * @param pkt The memory request.
76 * @param data the data to not write.
77 */
78 virtual Tick write(Packet *pkt);
79};
80
81#endif // __TSUNAMI_FAKE_HH__
76 * @param data the data to not write.
77 */
78 virtual Tick write(Packet *pkt);
79};
80
81#endif // __TSUNAMI_FAKE_HH__