1
0
mirror of https://github.com/pkimpel/retro-b5500.git synced 2026-02-12 03:07:30 +00:00
Files
pkimpel.retro-b5500/emulator/Pow2.html

23 lines
340 B
HTML

<html>
<body>
<script>
var x;
var p=1;
document.write("pow2 = [1");
for (x=1; x<=52; x++) {
p += p;
document.write(", " + p);
}
document.writeln("]");
p = 1;
document.write("mask2 = [0");
for (x=1; x<=52; x++) {
p += p;
document.write(", " + (p-1));
}
document.writeln("]");
</script>
</body>
</html>