diff runtime/builtin.h @ 30:914ad38f9b59

Compiler now works for some simple programs
author Mike Pavone <pavone@retrodev.com>
date Mon, 28 Sep 2009 19:42:33 -0400
parents 31f8182f3433
children 495dddadd058
line wrap: on
line diff
--- a/runtime/builtin.h	Sat Jun 27 01:50:33 2009 -0400
+++ b/runtime/builtin.h	Mon Sep 28 19:42:33 2009 -0400
@@ -2,6 +2,9 @@
 #define _BUILTIN_H_
 #include "plat_types.h"
 
+#include "object.h"
+#include "func.h"
+
 //Builtin Types
 enum {
 	TYPE_UINT8 = 1,
@@ -43,4 +46,7 @@
 void register_builtin_types();
 void register_builtin_type(uint32_t type);
 
+//TODO: Remove this when it's possible to write Print in Rhope
+FuncDef(Print)
+
 #endif //_BUILTIN_H_