This is a port of the mruby/c tutorial Chapter 03 to the mbed environment.

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers mrubyc.h Source File

mrubyc.h

Go to the documentation of this file.
00001 /*! @file
00002   @brief
00003   Include at once the necessary header files for user program.
00004 
00005   <pre>
00006   Copyright (C) 2015-2016 Kyushu Institute of Technology.
00007   Copyright (C) 2015-2016 Shimane IT Open-Innovation Center.
00008 
00009   This file is distributed under BSD 3-Clause License.
00010 
00011   </pre>
00012 */
00013 
00014 #ifndef MRBC_SRC_MRUBYC_H_
00015 #define MRBC_SRC_MRUBYC_H_
00016 
00017 #include "errorcode.h "
00018 #include "vm.h"
00019 #include "value.h "
00020 #include "static.h"
00021 #include "alloc.h"
00022 #include "class.h "
00023 #include "load.h"
00024 #include "rrt0.h"
00025 
00026 #endif
00027