start implementing run --browser

This commit is contained in:
2022-02-19 16:21:02 +01:00
parent f1493ebded
commit 4c75ba2e44
8 changed files with 993 additions and 49 deletions

14
web/src/run-web.html Normal file
View File

@@ -0,0 +1,14 @@
<!doctype html>
<html>
<head>
<meta charset="utf8" />
<title>uw8-run</title>
</head>
<body>
<canvas id="screen" width="320" height="240">
</canvas>
</body>
<script type="module">
import "./run-web.js";
</script>
</html>