first poc for a web runtime

This commit is contained in:
2021-10-28 21:44:30 +02:00
parent 57eed68be8
commit ddc9a70006
6 changed files with 4630 additions and 0 deletions

13
web/src/index.html Normal file
View File

@@ -0,0 +1,13 @@
<!doctype html>
<html>
<head>
<meta charset="utf8" />
<title>MicroW8</title>
</head>
<body>
<canvas id="screen" width="320" height="256" />
<script type="module">
import "./main.js";
</script>
</body>
</html>