mandel-6502/sim.html

22 lines
563 B
HTML
Raw Normal View History

2023-01-08 05:19:40 +00:00
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>Mandelbrot fixed-point test</title>
<style type="text/css">
/* */
</style>
<body>
<h1>Mandelbrot fixed-point test</h1>
<h2>Float</h2>
<canvas id="float" width="256" height="256"></canvas>
<h2>Fixed-point imul</h2>
<canvas id="imul" width="256" height="256"></canvas>
<h2>Fixed-point log</h2>
<canvas id="log" width="256" height="256"></canvas>
<script async type="module" src="sim.js"></script>
</body>
</html>