diff options
Diffstat (limited to 'cpu/o3/cpu.hh')
-rw-r--r-- | cpu/o3/cpu.hh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpu/o3/cpu.hh b/cpu/o3/cpu.hh index f4b19bfb3..ef5c9ae53 100644 --- a/cpu/o3/cpu.hh +++ b/cpu/o3/cpu.hh @@ -63,6 +63,12 @@ class BaseFullCPU : public BaseCPU void regStats(); + /** Sets this CPU's ID. */ + void setCpuId(int id) { cpu_id = id; } + + /** Reads this CPU's ID. */ + int readCpuId() { return cpu_id; } + protected: int cpu_id; }; |