diff options
author | Nathan Binkert <binkertn@umich.edu> | 2006-10-19 23:38:45 -0700 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2006-10-19 23:38:45 -0700 |
commit | 7245d4530d0c8367fa7b1adadcb55e1e8bd466e7 (patch) | |
tree | cf0a90859f0bb3a5c9615f34034aa302b1c73af5 /src/dev/isa_fake.hh | |
parent | 5b246a0567193b05d8257fce8c43610ce5b8c253 (diff) | |
download | gem5-7245d4530d0c8367fa7b1adadcb55e1e8bd466e7.tar.xz |
refactor code for the packet, get rid of packet_impl.hh
and call it packet_access.hh and fix the #includes so
things compile right.
--HG--
extra : convert_revision : d3626c9715b9f7e51bb3ab8d97e971fad4e0b724
Diffstat (limited to 'src/dev/isa_fake.hh')
-rw-r--r-- | src/dev/isa_fake.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dev/isa_fake.hh b/src/dev/isa_fake.hh index 5166882f8..32b9045ca 100644 --- a/src/dev/isa_fake.hh +++ b/src/dev/isa_fake.hh @@ -36,9 +36,10 @@ #ifndef __ISA_FAKE_HH__ #define __ISA_FAKE_HH__ -#include "dev/tsunami.hh" #include "base/range.hh" #include "dev/io_device.hh" +#include "dev/tsunami.hh" +#include "mem/packet.hh" /** * IsaFake is a device that returns -1 on all reads and |