Merge ktlim@zizzer.eecs.umich.edu:/bk/m5
[gem5.git] / dev / platform.cc
index cf012352bd3f3d948e8b3e36c3d6fbe8148c690f..adced0c5f38ad4f0bbe16eda4b54888e31741609 100644 (file)
 
 using namespace std;
 
+Platform::Platform(const string &name, IntrControl *intctrl, PciConfigAll *pci)
+    : SimObject(name), intrctrl(intctrl), pciconfig(pci)
+{
+}
+
+Platform::~Platform()
+{
+}
+
 void
 Platform::postPciInt(int line)
 {