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.
2023-03-16 22:26:54 +00:00
|
|
|
<!DOCTYPE html>
|
2023-03-17 02:18:29 +00:00
|
|
|
|
2023-03-16 22:26:54 +00:00
|
|
|
<html lang="en-US">
|
2023-03-17 02:18:29 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
|
|
|
<title>Web-Test | NerdEMU</title>
|
|
|
|
<link rel="stylesheet" href="test.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header id="config-button"s>
|
|
|
|
<div class="hamburger" id="configurator-button">
|
|
|
|
<div class="hamburger-slice"></div>
|
|
|
|
<div class="hamburger-slice"></div>
|
|
|
|
<div class="hamburger-slice"></div>
|
|
|
|
<div>
|
|
|
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div id="configurator-modal">
|
|
|
|
<div id="configurator-modal-background"></div>
|
|
|
|
|
|
|
|
<div id="configurator-modal-foreground">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<main>
|
|
|
|
|
|
|
|
<p id="output-title">The NerdEMU Emulator</p>
|
|
|
|
|
|
|
|
<canvas class="pixel-output"></canvas>
|
|
|
|
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
<script src="test.js"></script>
|
|
|
|
<script type="module">
|
2023-03-19 09:45:25 +00:00
|
|
|
import init, { nemu_init } from "./base/pkg/nemu_base.js";
|
2023-03-17 02:18:29 +00:00
|
|
|
|
|
|
|
init().then(() => {
|
2023-03-19 09:45:25 +00:00
|
|
|
nemu_init();
|
2023-03-17 02:18:29 +00:00
|
|
|
});
|
|
|
|
</script>
|
2023-03-16 22:26:54 +00:00
|
|
|
</html>
|