summaryrefslogtreecommitdiff
path: root/cpu
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2006-04-28 15:40:45 -0400
committerAli Saidi <saidi@eecs.umich.edu>2006-04-28 15:40:45 -0400
commit79170b1be593cd366520166c8126ebec10144086 (patch)
tree45928d77abe605576e9dc915c6db36970e7e4b25 /cpu
parentc4b3a2fa0f0cbddbb3590964abf1f20a2f2bc6f3 (diff)
downloadgem5-79170b1be593cd366520166c8126ebec10144086.tar.xz
random mix of tidbits
configs/test/fs.py: update fs.py to use a bus bridge cpu/simple/cpu.hh: cpu should just return that it doesn't snoop any address ranges python/m5/objects/System.py: move boot_osflags to system --HG-- extra : convert_revision : b4256df7eada7e65b69513361de8bffc3fdd680b
Diffstat (limited to 'cpu')
-rw-r--r--cpu/simple/cpu.hh4
1 files changed, 4 insertions, 0 deletions
diff --git a/cpu/simple/cpu.hh b/cpu/simple/cpu.hh
index 3640348a3..252d57206 100644
--- a/cpu/simple/cpu.hh
+++ b/cpu/simple/cpu.hh
@@ -103,6 +103,10 @@ class SimpleCPU : public BaseCPU
virtual void recvStatusChange(Status status);
virtual Packet *recvRetry();
+
+ virtual void getDeviceAddressRanges(AddrRangeList &resp,
+ AddrRangeList &snoop)
+ { resp.clear(); snoop.clear(); }
};
MemObject *mem;