preliminary Clustered Virtual Disk; hardware dev kit wip

This commit is contained in:
minjaesong
2023-06-06 21:50:43 +09:00
parent f47d446ff0
commit 53ec998f26
18 changed files with 89 additions and 2587 deletions

View File

@@ -0,0 +1,9 @@
if (exec_args[1] === undefined) {
println("Usage: decompile myfile.bin")
println("The compiled file will be myfile.bin.js")
return 1
}
_G.shell.execute(`enc ${exec_args[1]} ${exec_args[1]}.gz`)
_G.shell.execute(`gzip -c -d ${exec_args[1]}.gz | writeto ${exec_args[1]}.js`)
_G.shell.execute(`rm ${exec_args[1]}.gz`)