diff options
author | Ron Dreslinski <rdreslin@umich.edu> | 2006-02-21 01:01:16 -0500 |
---|---|---|
committer | Ron Dreslinski <rdreslin@umich.edu> | 2006-02-21 01:01:16 -0500 |
commit | 75152fcaf709135d5f9668875234aed51d6334c4 (patch) | |
tree | 6ac63757a655e89dd0ed13b47f8e481fd6307de4 /cpu/simple/cpu.hh | |
parent | 33913542859fa2bef15765009ae33d5e724bb0b0 (diff) | |
download | gem5-75152fcaf709135d5f9668875234aed51d6334c4.tar.xz |
Get simple cpu to compile.
Now I need to fix linking errors, probably due to missing function details in new memory objects.
cpu/exec_context.cc:
cpu/exec_context.hh:
Fix constructor for SE mode
cpu/simple/cpu.cc:
cpu/simple/cpu.hh:
Fix compilation errors
--HG--
extra : convert_revision : 6a58c0906340e10b654369c36f528fc17e3f19be
Diffstat (limited to 'cpu/simple/cpu.hh')
-rw-r--r-- | cpu/simple/cpu.hh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpu/simple/cpu.hh b/cpu/simple/cpu.hh index 3d445b001..6df553fe2 100644 --- a/cpu/simple/cpu.hh +++ b/cpu/simple/cpu.hh @@ -248,7 +248,10 @@ class SimpleCPU : public BaseCPU void sendIcacheRequest(); void sendDcacheRequest(); - void processResponse(Packet *response); + void processResponse(Packet &response); + + Packet * processRetry(); + void recvStatusChange(Port::Status status) {} virtual void serialize(std::ostream &os); virtual void unserialize(Checkpoint *cp, const std::string §ion); |