diff runtime/integer.h @ 7:d61550e2c001

Added current work on new runtime
author Mike Pavone <pavone@retrodev.com>
date Wed, 13 May 2009 00:47:40 -0400
parents
children 31f8182f3433
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/runtime/integer.h	Wed May 13 00:47:40 2009 -0400
@@ -0,0 +1,16 @@
+#ifndef _INTEGER_H_
+#define _INTEGER_H_
+
+#include "object.h"
+#include "func.h"
+
+OBegin
+	int32_t num;
+Object(Int32)
+
+MethodDef(_PL_,Int32)
+MethodDef(_MN_,Int32)
+
+object * make_Int32(int32_t val);
+
+#endif //_INTEGER_H_