commit | 465e0b3e6556f27848afccc6c31c670472f893b9 | [log] [tgz] |
---|---|---|
author | Zane Shelley <zshelle@us.ibm.com> | Wed Apr 17 10:15:39 2019 -0500 |
committer | Zane Shelley <zshelle@us.ibm.com> | Wed Apr 17 10:45:51 2019 -0500 |
tree | a8b54d04714443da1ff4ef459f9c504db64f7465 | |
parent | 7d3c1904fd299853479b0b03f5b7fafbc9a02dc5 [diff] [blame] |
HEI: initial "hello world" Change-Id: I8d4f1994a58afdf24558bb528de632de0511c75c
diff --git a/sim/hei_sim_main.cpp b/sim/hei_sim_main.cpp new file mode 100644 index 0000000..bfce2d0 --- /dev/null +++ b/sim/hei_sim_main.cpp
@@ -0,0 +1,18 @@ + +#include "../hei_isolator.hpp" + +namespace HEI_SIM +{ + +int main() +{ + HEI::Isolator iso; + + iso.initialize(); + + iso.isolate(); + + return 0; +} + +}; // end namespace HEI_SIM