-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.js
executable file
·70 lines (57 loc) · 1.84 KB
/
run.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env node
"use strict";
process.on("unhandledRejection", exn => { throw exn; });
const TEST_RELEASE_BUILD = +process.env.TEST_RELEASE_BUILD;
var V86 = require(`../../build/${TEST_RELEASE_BUILD ? "libv86" : "libv86-debug"}.js`).V86;
var fs = require("fs");
var test_executable = new Uint8Array(fs.readFileSync(__dirname + "/test-i386"));
var emulator = new V86({
bios: { url: __dirname + "/../../bios/seabios.bin" },
vga_bios: { url: __dirname + "/../../bios/vgabios.bin" },
cdrom: { url: __dirname + "/../../images/linux4.iso" },
autostart: true,
memory_size: 32 * 1024 * 1024,
filesystem: {},
disable_jit: +process.env.DISABLE_JIT,
log_level: 0,
});
emulator.bus.register("emulator-started", function()
{
console.error("Booting now, please stand by");
emulator.create_file("test-i386", test_executable);
});
var ran_command = false;
var line = "";
emulator.add_listener("serial0-output-byte", async function(byte)
{
var chr = String.fromCharCode(byte);
if(chr < " " && chr !== "\n" && chr !== "\t" || chr > "~")
{
return;
}
if(chr === "\n")
{
var new_line = line;
console.error("Serial: %s", line);
line = "";
}
else if(chr >= " " && chr <= "~")
{
line += chr;
}
if(!ran_command && line.endsWith("~% "))
{
ran_command = true;
emulator.serial0_send("chmod +x /mnt/test-i386\n");
emulator.serial0_send("/mnt/test-i386 > /mnt/result\n");
emulator.serial0_send("echo test fini''shed\n");
}
if(new_line && new_line.includes("test finished"))
{
console.error("Done. Reading result ...");
const data = await emulator.read_file("/result");
console.error("Got result, writing to stdout");
process.stdout.write(Buffer.from(data));
emulator.stop();
}
});