diff options
Diffstat (limited to 'history/data_structures/DEBUG.js')
-rw-r--r-- | history/data_structures/DEBUG.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/history/data_structures/DEBUG.js b/history/data_structures/DEBUG.js new file mode 100644 index 0000000..6d610ad --- /dev/null +++ b/history/data_structures/DEBUG.js @@ -0,0 +1,13 @@ +function DEBUG () { + + + var model = scicos_model(); + model.sim=list(new ScilabString(["%debug_scicos"]),new ScilabDouble([99])); + model.blocktype = new ScilabString(["d"]); + + var exprs = list("","xcos_debug_gui(flag,block);"); + + var gr_i = []; + this.x=new standard_define(new ScilabDouble([8,2]),model,exprs,gr_i); + return new BasicBlock(this.x) +} |