Created initial README.md

Change-Id: Ic799939d918b1b037ece1bc434a4e0abc5a39e97
Signed-off-by: Zane Shelley <zshelle@us.ibm.com>
diff --git a/sim/hei_user_defines.hpp b/sim/hei_user_defines.hpp
new file mode 100644
index 0000000..54c7344
--- /dev/null
+++ b/sim/hei_user_defines.hpp
@@ -0,0 +1,18 @@
+#include <stdio.h>
+#include <assert.h>
+
+#define HEI_INF( ... ) \
+{ \
+  printf( "I> " __VA_ARGS__ ); \
+  printf( "\n" ); \
+}
+
+#define HEI_ERR( ... ) \
+{ \
+  printf( "E> " __VA_ARGS__ ); \
+  printf( "\n" ); \
+}
+
+#define HEI_ASSERT( expression ) \
+  assert( expression );
+