Fix up imports in Ozone objects/*.py files.

src/python/m5/objects/FUPool.py:
src/python/m5/objects/OzoneCPU.py:
src/python/m5/objects/SimpleOzoneCPU.py:
    Fix up imports (m5 namespace no longer includes m5.config).

--HG--
extra : convert_revision : 8575ef7d19ef8dfe9524723d7c4f85234d1280d2
This commit is contained in:
Steve Reinhardt 2006-06-09 23:33:15 -04:00
parent 95019d0c6f
commit f693b451a5
3 changed files with 5 additions and 6 deletions

View file

@ -1,7 +1,4 @@
from m5 import *
from FullCPU import OpType
from FullCPU import OpDesc
from FullCPU import FUDesc
from m5.config import *
class FUPool(SimObject):
type = 'FUPool'

View file

@ -1,4 +1,5 @@
from m5 import *
from m5 import build_env
from m5.config import *
from BaseCPU import BaseCPU
class DerivOzoneCPU(BaseCPU):

View file

@ -1,4 +1,5 @@
from m5 import *
from m5 import build_env
from m5.config import *
from BaseCPU import BaseCPU
class SimpleOzoneCPU(BaseCPU):