isa_fake.cc (10565:23593fdaadcd) isa_fake.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 * Isa Fake Device implementation
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 * Isa Fake Device implementation
33 */
34
35#include "dev/isa_fake.hh"
36
35#include "base/trace.hh"
36#include "debug/IsaFake.hh"
37#include "base/trace.hh"
38#include "debug/IsaFake.hh"
37#include "dev/isa_fake.hh"
38#include "mem/packet.hh"
39#include "mem/packet_access.hh"
40#include "sim/system.hh"
41
42using namespace std;
43
44IsaFake::IsaFake(Params *p)
45 : BasicPioDevice(p, p->ret_bad_addr ? 0 : p->pio_size)

--- 106 unchanged lines hidden ---
39#include "mem/packet.hh"
40#include "mem/packet_access.hh"
41#include "sim/system.hh"
42
43using namespace std;
44
45IsaFake::IsaFake(Params *p)
46 : BasicPioDevice(p, p->ret_bad_addr ? 0 : p->pio_size)

--- 106 unchanged lines hidden ---