Initial commit.

This commit is contained in:
blitz-research
2014-01-31 08:23:00 +13:00
commit 08a613ed0e
322 changed files with 45306 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
/*
Platform neutral runtime library.
To be statically linked with an appropriate gxruntime driver.
*/
#ifndef BBRUNTIME_H
#define BBRUNTIME_H
#include "../gxruntime/gxruntime.h"
void bbruntime_link( void (*rtSym)( const char *sym,void *pc ) );
const char *bbruntime_run( gxRuntime *runtime,void (*pc)(),bool debug );
void bbruntime_panic( const char *err );
#endif