diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/guides/mrbconf.md | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/doc/guides/mrbconf.md b/doc/guides/mrbconf.md index 2f81776df..1e1a5afcf 100644 --- a/doc/guides/mrbconf.md +++ b/doc/guides/mrbconf.md @@ -54,17 +54,13 @@ You can use mrbconfs with following ways: * When defined removes floating point numbers from mruby. * It makes mruby easier to handle in "Microcontroller without FPU" and "Kernel Space". -`MRB_INT16` -* When defined `int16_t` will be defined as `mrb_int`. -* Conflicts with `MRB_INT32` and `MRB_INT64`. - `MRB_INT32` -* When defined, or both `MRB_INT16` and `MRB_INT64` are not defined on 32-bit CPU mode, `int32_t` will be defined as `mrb_int`. -* Conflicts with `MRB_INT16` and `MRB_INT64`. +* When defined, or `MRB_INT64` are not defined on 32-bit CPU mode, `mrb_int` will be defined as `int32_t`. +* Conflicts with `MRB_INT64`. `MRB_INT64` -* When defined, or both `MRB_INT16` and `MRB_INT32` are not defined on 64-bit CPU mode, `int64_t` will be defined as `mrb_int`. -* Conflicts with `MRB_INT16` and `MRB_INT32`. +* When defined, or `MRB_INT32` are not defined on 64-bit CPU mode, `mrb_int` will be defined as `int64_t`. +* Conflicts with `MRB_INT32`. ## Garbage collector configuration. |
