Fabian
Fabian
Probably requires https://github.com/copy/v86/issues/133, unless they have an i386 build somewhere.
It would be nice to have, but it's a huge project and I won't find enough time any time soon to work on it. I'll leave this open, if someone...
> @copy I read you are experimenting with Web Assembly on issue #170? Do you have a sneak peek we can take a look at? I am ready to experiment!...
First, check which method the guest uses for rebooting. If it's via the ps2 controller or pci, you should see this log message: https://github.com/copy/v86/blob/6b376fc/src/ps2.js#L807 or this: https://github.com/copy/v86/blob/6b376fc/src/pci.js#L122 This method is...
I think it's better to leave this open, as it's not fixed.
Here's something to play with: ``` javascript > cpu = new CPU CPU {memory_size: 0, segment_is_null: Array[0], segment_offsets: Array[0], segment_limits: Array[0], tlb_data: Int32Array[1048576]…} > cpu.create_memory(1024 * 1024 * 16) undefined...
It's possible, but low priority.
Is edk2 for real machines? What does qemu use for UEFI boot? I believe seabios has an uefi build, which is more likely going to work. > I also tried...
Indeed, configurations with both CD and HDD are haven't been tested much. I don't really have the time or energy to fix this, so contributions are very welcome.
This happens because the text output is a vga text console which doesn't support many resolutions. We could scale the screen or use a better terminal (i.e., #172).