v86 0.3.1 → 0.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Readme.md CHANGED
@@ -7,10 +7,10 @@ Bundler-friendly version of the v86 PC Emulator!
7
7
  Using Vite you can load binaries and wasm files directly!
8
8
 
9
9
  ```js
10
- import { V86Starter } from "v86-module";
11
- import v86Wasm from "v86-module/build/v86.wasm";
12
- import bios from "v86-module/bios/seabios.bin?url";
13
- import vgabios from "v86-module/bios/vgabios.bin?url";
10
+ import { V86Starter } from "v86";
11
+ import v86Wasm from "v86/build/v86.wasm";
12
+ import bios from "v86/bios/seabios.bin?url";
13
+ import vgabios from "v86/bios/vgabios.bin?url";
14
14
  import cdrom from "./images/linux.iso?url";
15
15
 
16
16
  new V86Starter({
@@ -51,8 +51,8 @@ new V86Starter({
51
51
  If you want to test the library without specific loaders for wasm and binary files, you can also use the base64 version:
52
52
 
53
53
  ```js
54
- import { V86Starter } from "v86-module";
55
- import { v86WASM, seabios, vgabios } from 'v86-module/build/binaries';
54
+ import { V86Starter } from "v86";
55
+ import { v86WASM, seabios, vgabios } from 'v86/build/binaries';
56
56
  import cdrom from "./images/linux.iso?url";
57
57
 
58
58
  async function main() {