diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2006-02-23 15:06:06 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2006-02-23 15:06:06 -0500 |
commit | e1c3acd91c65ae7d51a7d0b3c0f7be764b2c8f79 (patch) | |
tree | 490fb46c6254fea699d419d58035a1e0b67eebdd /cpu/simple/cpu.hh | |
parent | 99484cfae81f3f01ccdfcd273ddc2bdb41e6456b (diff) | |
parent | 1166d4f0bfe67a9dc178be3454b4f0eac38663ad (diff) | |
download | gem5-e1c3acd91c65ae7d51a7d0b3c0f7be764b2c8f79.tar.xz |
Merge zizzer:/bk/m5
into zeep.eecs.umich.edu:/z/saidi/work/m5.head
cpu/simple/cpu.cc:
remove initCPU from constructor
dev/alpha_console.cc:
we are panicing, so no need to return a fault
--HG--
extra : convert_revision : 72389ea0c96e91a55f35b884200325224bfb6ed9
Diffstat (limited to 'cpu/simple/cpu.hh')
-rw-r--r-- | cpu/simple/cpu.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpu/simple/cpu.hh b/cpu/simple/cpu.hh index d3e0323b6..ed7b1e29b 100644 --- a/cpu/simple/cpu.hh +++ b/cpu/simple/cpu.hh @@ -68,6 +68,7 @@ class SimpleCPU : public BaseCPU public: // main simulation loop (one cycle) void tick(); + virtual void init(); private: struct TickEvent : public Event |