bbruntime.h 375 B

123456789101112131415161718192021
  1. /*
  2. Platform neutral runtime library.
  3. To be statically linked with an appropriate gxruntime driver.
  4. */
  5. #ifndef BBRUNTIME_H
  6. #define BBRUNTIME_H
  7. #include "../gxruntime/gxruntime.h"
  8. void bbruntime_link( void (*rtSym)( const char *sym,void *pc ) );
  9. const char *bbruntime_run( gxRuntime *runtime,void (*pc)(),bool debug );
  10. void bbruntime_panic( const char *err );
  11. #endif