command.js to run batch file

This commit is contained in:
minjaesong
2020-11-04 16:10:33 +09:00
parent 3b2870ec9c
commit ab0827b96c
7 changed files with 26 additions and 10 deletions

View File

@@ -377,6 +377,9 @@ con.clear = function() {
con.curs_set = function(arg) {
print(String.fromCharCode(27,91)+"?25"+(((arg|0) == 0) ? "l" : "h"));
};
con.reset_graphics = function() {
println(String.fromCharCode(27,91,109));
};
Object.freeze(con);
// system management function
var system = {};