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
+20
View File
@@ -0,0 +1,20 @@
#ifndef BBSYS_H
#define BBSYS_H
#include "basic.h"
#include "../gxruntime/gxruntime.h"
extern bool debug;
extern gxRuntime *gx_runtime;
struct bbEx{
const char *err;
bbEx( const char *e ):err(e){
if( e ) gx_runtime->debugError( e );
}
};
#define RTEX( _X_ ) throw bbEx( _X_ );
#endif