diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2006-04-28 15:40:45 -0400 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2006-04-28 15:40:45 -0400 |
commit | 79170b1be593cd366520166c8126ebec10144086 (patch) | |
tree | 45928d77abe605576e9dc915c6db36970e7e4b25 /cpu | |
parent | c4b3a2fa0f0cbddbb3590964abf1f20a2f2bc6f3 (diff) | |
download | gem5-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.hh | 4 |
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; |