From 3595b0c5a1a3e398a7efae932cd4175cd1ca3f0e Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Sun, 16 Oct 2011 05:06:39 -0700 Subject: SE/FS: Build/expose vport in SE mode. --- src/cpu/ozone/cpu.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/cpu/ozone') diff --git a/src/cpu/ozone/cpu.hh b/src/cpu/ozone/cpu.hh index 98d236b74..63452d202 100644 --- a/src/cpu/ozone/cpu.hh +++ b/src/cpu/ozone/cpu.hh @@ -123,15 +123,15 @@ class OzoneCPU : public BaseCPU TheISA::Kernel::Statistics *getKernelStats() { return thread->getKernelStats(); } - - VirtualPort *getVirtPort() - { return thread->getVirtPort(); } #else TranslatingPort *getMemPort() { return thread->getMemPort(); } Process *getProcessPtr() { return thread->getProcessPtr(); } #endif + VirtualPort *getVirtPort() + { return thread->getVirtPort(); } + FunctionalPort *getPhysPort() { return thread->getPhysPort(); } Status status() const { return thread->status(); } -- cgit v1.2.3