diff options
author | Ron Dreslinski <rdreslin@umich.edu> | 2006-01-31 14:15:33 -0500 |
---|---|---|
committer | Ron Dreslinski <rdreslin@umich.edu> | 2006-01-31 14:15:33 -0500 |
commit | 95088d141fb3006a39c342af9501f0203772cf79 (patch) | |
tree | 51b85b58656e94d048341436fd926d64166c03b7 /mem | |
parent | c0f012d13d7234263a7c0ec641604e8fd7efffdd (diff) | |
download | gem5-95088d141fb3006a39c342af9501f0203772cf79.tar.xz |
Add proper includes
--HG--
extra : convert_revision : c5f909d00b6025cd8f14544f7e2c9c50610c0cd3
Diffstat (limited to 'mem')
-rw-r--r-- | mem/bus.hh | 2 | ||||
-rw-r--r-- | mem/mem_object.hh | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/mem/bus.hh b/mem/bus.hh index 80d4d9dfd..57d819304 100644 --- a/mem/bus.hh +++ b/mem/bus.hh @@ -40,6 +40,8 @@ #include "base/range.hh" #include "mem/mem_object.hh" #include "mem/packet.hh" +#include "mem/port.hh" +#include "mem/request.hh" class Bus : public MemObject { diff --git a/mem/mem_object.hh b/mem/mem_object.hh index 7fa2380ba..c6c5076e8 100644 --- a/mem/mem_object.hh +++ b/mem/mem_object.hh @@ -35,6 +35,7 @@ #define __MEM_MEM_OBJECT_HH__ #include "sim/sim_object.hh" +#include "mem/port.hh" /** * The base MemoryObject class, allows for an accesor function to a |