summaryrefslogtreecommitdiff
path: root/cpu/simple_cpu
diff options
context:
space:
mode:
authorErik Hallnor <ehallnor@umich.edu>2004-02-27 02:40:43 -0500
committerErik Hallnor <ehallnor@umich.edu>2004-02-27 02:40:43 -0500
commitcfb6f8fd01e19dbd0b3ce5cfa28d6f78f617e954 (patch)
tree10fabe88602c18bd99010b6df12bec0a7373e59b /cpu/simple_cpu
parentc3784e37ceba78eee92f46ed92aa2462e238a206 (diff)
downloadgem5-cfb6f8fd01e19dbd0b3ce5cfa28d6f78f617e954.tar.xz
Added copy instructions to the ISA. Well it didn't break anything yet...
arch/alpha/isa_desc: Add copy_load and copy_store insts (ldf and stf respectively) cpu/simple_cpu/simple_cpu.hh: Add copy functions to SimpleCPU as well --HG-- extra : convert_revision : 1fa041da582b418c47d4eefc22dabba978a50e2d
Diffstat (limited to 'cpu/simple_cpu')
-rw-r--r--cpu/simple_cpu/simple_cpu.hh11
1 files changed, 11 insertions, 0 deletions
diff --git a/cpu/simple_cpu/simple_cpu.hh b/cpu/simple_cpu/simple_cpu.hh
index 2b881509c..4bdc69ad1 100644
--- a/cpu/simple_cpu/simple_cpu.hh
+++ b/cpu/simple_cpu/simple_cpu.hh
@@ -246,6 +246,17 @@ class SimpleCPU : public BaseCPU
{
// need to do this...
}
+
+ void copySrcTranslate(Addr src)
+ {
+ panic("Haven't implemented Copy Src translate yet in SimpleCPU\n");
+ }
+
+ void copy(Addr dest)
+ {
+ panic("Haven't implemented Copy yet in SimpleCPU\n");
+ }
+
};
#endif // __SIMPLE_CPU_HH__