diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-03-07 22:56:12 -0500 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-03-07 22:56:12 -0500 |
commit | b5638330751f87930d61743030979e251cacd4ad (patch) | |
tree | 172a7b088902065fdb29238a0ae9090bc3dd02f0 /dev | |
parent | 556d069e77f1b6dffa4e4ece7aa86ab462ab8f4f (diff) | |
download | gem5-b5638330751f87930d61743030979e251cacd4ad.tar.xz |
Needs forward declaration of MemoryController.
--HG--
extra : convert_revision : 07f397742a026cb6320dc29722d1db21157f26fa
Diffstat (limited to 'dev')
-rw-r--r-- | dev/baddev.hh | 2 | ||||
-rw-r--r-- | dev/isa_fake.hh | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/dev/baddev.hh b/dev/baddev.hh index c2a204c05..189f28331 100644 --- a/dev/baddev.hh +++ b/dev/baddev.hh @@ -37,6 +37,8 @@ #include "base/range.hh" #include "dev/io_device.hh" +class MemoryController; + /** * BadDevice * This device just panics when accessed. It is supposed to warn diff --git a/dev/isa_fake.hh b/dev/isa_fake.hh index 290b24b54..73e40c681 100644 --- a/dev/isa_fake.hh +++ b/dev/isa_fake.hh @@ -37,6 +37,8 @@ #include "base/range.hh" #include "dev/io_device.hh" +class MemoryController; + /** * IsaFake is a device that returns -1 on all reads and * accepts all writes. It is meant to be placed at an address range |