-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (29 loc) · 893 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learn WGPU</title>
<style>
canvas {
background-color: black;
}
</style>
</head>
<body id="wasm-example">
<script type="module">
import init, * as wasm from "./pkg/chip_8_emu.js";
await init();
const { WasmEventLoop, WasmMainLoop } = wasm;
const eventLoop = new WasmEventLoop();
const resp = await fetch("/roms/airplane.ch8");
const emu = await WasmMainLoop.create(document.body, new Uint8Array(await resp.arrayBuffer()), {});
eventLoop.attach(emu);
setTimeout(() => {
eventLoop.set_options({ bg: { r: 255, g: 255, b: 255 } });
}, 1000)
</script>
<div>
</body>
</html>