diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-07-13 15:00:45 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-07-13 15:00:45 +0900 |
| commit | 737eaea038af56794b8fdb5a66bb4138dbd446f6 (patch) | |
| tree | 00cd7c3d021325fd0adad67a32aee0aac2fb5461 /src/vm.c | |
| parent | bbec03bb7af3fb0277a267e4ec5d38b58aa5cb46 (diff) | |
| download | mruby-737eaea038af56794b8fdb5a66bb4138dbd446f6.tar.gz mruby-737eaea038af56794b8fdb5a66bb4138dbd446f6.zip | |
allow DISABLE/ENABLE_SATDIO
Diffstat (limited to 'src/vm.c')
| -rw-r--r-- | src/vm.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1577,7 +1577,11 @@ mrb_run(mrb_state *mrb, struct RProc *proc, mrb_value self) CASE(OP_DEBUG) { /* A debug print R(A),R(B),R(C) */ +#ifdef ENABLE_STDIO printf("OP_DEBUG %d %d %d\n", GETARG_A(i), GETARG_B(i), GETARG_C(i)); +#else + abort(); +#endif NEXT; } |
