Update XML for new Explorer levels

Signed-off-by: Zane Shelley <zshelle@us.ibm.com>
Change-Id: I2a79d0dc217241605cb798a3386d77b9aa59f33c
diff --git a/test/simulator/simulator.cpp b/test/simulator/simulator.cpp
index b95027d..e994eba 100644
--- a/test/simulator/simulator.cpp
+++ b/test/simulator/simulator.cpp
@@ -11,6 +11,9 @@
 const std::map<SimulatorData::SimChipType, const char*>
     SimulatorData::cv_chipPath = {
         {SAMPLE, "../test/simulator/sample_data/sample.cdb"},
+        {EXPLORER_11, "chip_data_explorer_11.cdb"},
+        {EXPLORER_20, "chip_data_explorer_20.cdb"},
+        {P10_10, "chip_data_p10_10.cdb"},
 };
 
 //------------------------------------------------------------------------------
diff --git a/test/simulator/simulator.hpp b/test/simulator/simulator.hpp
index 0a22911..c308fda 100644
--- a/test/simulator/simulator.hpp
+++ b/test/simulator/simulator.hpp
@@ -43,7 +43,10 @@
     /** The list of supported chip types for the simulator. */
     enum SimChipType
     {
-        SAMPLE = 0xdeadbeef,
+        SAMPLE      = 0xdeadbeef,
+        EXPLORER_11 = 0x60d20011,
+        EXPLORER_20 = 0x60d20020,
+        P10_10      = 0x20da0010,
     };
 
   private: