mirror of
https://github.com/copy/v86.git
synced 2025-12-31 04:23:15 +00:00
63 lines
1.7 KiB
JavaScript
Executable file
63 lines
1.7 KiB
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
import path from "node:path";
|
|
import url from "node:url";
|
|
|
|
const BENCH_COLLECT_STATS = +process.env.BENCH_COLLECT_STATS;
|
|
const { V86, print_stats } = await import(BENCH_COLLECT_STATS ? "../../src/main.js" : "../../build/libv86.mjs");
|
|
|
|
const __dirname = url.fileURLToPath(new URL(".", import.meta.url));
|
|
const V86_ROOT = path.join(__dirname, "../..");
|
|
|
|
const LOG_SERIAL = true;
|
|
|
|
|
|
var emulator = new V86({
|
|
bios: { url: __dirname + "/../../bios/seabios.bin" },
|
|
vga_bios: { url: __dirname + "/../../bios/vgabios.bin" },
|
|
cdrom: { url: __dirname + "/../../images/linux3.iso" },
|
|
autostart: true,
|
|
memory_size: 1024 * 1024 * 1024,
|
|
disable_jit: +process.env.DISABLE_JIT,
|
|
log_level: 0,
|
|
});
|
|
|
|
|
|
emulator.bus.register("emulator-started", function()
|
|
{
|
|
console.log("Booting now, please stand by");
|
|
start_time = Date.now();
|
|
});
|
|
|
|
var serial_text = "";
|
|
var start_time;
|
|
|
|
emulator.add_listener("serial0-output-byte", function(byte)
|
|
{
|
|
var chr = String.fromCharCode(byte);
|
|
if(chr < " " && chr !== "\n" && chr !== "\t" || chr > "~")
|
|
{
|
|
return;
|
|
}
|
|
|
|
if(LOG_SERIAL) process.stdout.write(chr);
|
|
|
|
serial_text += chr;
|
|
|
|
if(serial_text.endsWith("~% ") || serial_text.endsWith("root@localhost:~# "))
|
|
{
|
|
console.log("Creating snapshots");
|
|
const start_time = Date.now();
|
|
for(var i = 0; i < 10; ++i) emulator.save_state();
|
|
const end_time = Date.now();
|
|
const elapsed = end_time - start_time;
|
|
console.log("Done in %dms", elapsed);
|
|
emulator.destroy();
|
|
|
|
if(BENCH_COLLECT_STATS)
|
|
{
|
|
const cpu = emulator.v86.cpu;
|
|
console.log(print_stats.stats_to_string(cpu));
|
|
}
|
|
}
|
|
});
|