This repository has been archived on 2023-09-09. You can view files and clone it, but cannot push or open issues or pull requests.
nemu-old/x86/index.html

16 lines
267 B
HTML

<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<title>test</title>
</head>
<body>
<script type="module">
import init, { greet } from "./pkg/nemu.js";
init().then(() => {
greet("NerdEMU");
});
</script>
</body>
</html>