159 lines
3.4 KiB
HTML
159 lines
3.4 KiB
HTML
---
|
|
layout: null
|
|
---
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>booting...</title>
|
|
<link rel="stylesheet" href="/assets/css/fonts.css">
|
|
|
|
<style>
|
|
html, body {
|
|
color: green;
|
|
background: repeating-linear-gradient(
|
|
to bottom,
|
|
black,
|
|
rgb(51, 0, 51),
|
|
5px
|
|
);
|
|
background-color: black;
|
|
font-family: DOS, monospace;
|
|
}
|
|
p {
|
|
margin: 2px;
|
|
}
|
|
@font-face {
|
|
font-family: "DOS";
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
src: url("/assets/font/oldschool_pc/ttf - Px (pixel outline)/PxPlus_IBM_BIOS-2y.ttf") format('truetype');
|
|
font-size: 0.5em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<a href="/index">click here to skip</a><br>
|
|
<p id="0"></p>
|
|
<p id="1"></p>
|
|
<p id="2"></p>
|
|
<p id="3"></p>
|
|
<p id="4"></p>
|
|
<p id="5"></p>
|
|
<p id="6"></p>
|
|
<p id="7"></p>
|
|
<p id="8"></p>
|
|
<p id="9"></p>
|
|
<p id="10"></p>
|
|
<p id="11"></p>
|
|
<p id="12"></p>
|
|
<p id="13"></p>
|
|
<p id="14"></p>
|
|
<p id="15"></p>
|
|
<p id="16"></p>
|
|
<p id="17"></p>
|
|
<p id="18"></p>
|
|
<p id="19"></p>
|
|
<p id="20"></p>
|
|
<p id="21"></p>
|
|
<p id="22"></p>
|
|
<p id="23"></p>
|
|
<p id="24"></p>
|
|
<p id="25"></p>
|
|
<p id="26"></p>
|
|
<p id="27"></p>
|
|
<p id="28"></p>
|
|
<p id="29"></p>
|
|
<p id="30"></p>
|
|
|
|
<script>
|
|
var i = 0;
|
|
var j = 0;
|
|
var speed = 200;
|
|
const boot = ["candycane"]
|
|
const foo =
|
|
["Searching for valid boot partition",
|
|
"Not found"];
|
|
|
|
function type() {
|
|
if(i > boot[j].length) {
|
|
i = 0;
|
|
j++;
|
|
}
|
|
let real = j + 1
|
|
document.getElementById(real.toString()).innerHTML += boot[j].charAt(i)
|
|
i++;
|
|
setTimeout(type, speed);
|
|
}
|
|
|
|
|
|
var cursorLN = 0;
|
|
function writeScr() {
|
|
for (var i = 0; i < arguments.length; i++) {
|
|
cursorLN++;
|
|
document.getElementById(cursorLN.toString()).innerHTML = arguments[i];
|
|
}
|
|
}
|
|
|
|
function writeScrInPlace(a) {
|
|
document.getElementById(cursorLN.toString()).innerHTML = a;
|
|
}
|
|
|
|
function clsScr() {
|
|
for (var i = 0; i < 30; i++)
|
|
document.getElementById(i.toString()).innerHTML = "";
|
|
cursorLN = 0;
|
|
}
|
|
|
|
function skipper() {
|
|
window.location.href = "/index";
|
|
}
|
|
|
|
|
|
writeScr(
|
|
"Award Modular BIOS v12.14PGA, An Energy Ztar Ally",
|
|
"Copywrong (C) 2024, Candy Software, Inc",
|
|
"_",
|
|
"Version DEV_49_9",
|
|
"_",
|
|
"PENTIUM ODP-MMX CPU at 200MHz",
|
|
"Memory Test: 0K"
|
|
)
|
|
setTimeout(writeScrInPlace, 1500, "Memory Test: 640K");
|
|
setTimeout(writeScrInPlace, 1600, "Memory Test: 1280K");
|
|
setTimeout(writeScrInPlace, 1700, "Memory Test: 2560K");
|
|
setTimeout(writeScrInPlace, 1800, "Memory Test: 2560K OK");
|
|
setTimeout(writeScr, 2000,
|
|
"Award Plug and Play BIOS Extension v1.0A",
|
|
"Copyright (C) 2024, Award Software, Inc."
|
|
)
|
|
setTimeout(clsScr, 4000)
|
|
|
|
setTimeout(writeScr, 4001,
|
|
"TSROM: SCSI BIOS, Version 2.14",
|
|
"Copyright (C) 2024, Tranzit Systems, Ltd")
|
|
setTimeout(writeScr, 4500,
|
|
"SCSI ID: 2 Device: PCem PCemCD")
|
|
|
|
setTimeout(writeScr, 5000, "_",
|
|
"Starting MS-DOS...")
|
|
|
|
setTimeout(clsScr, 9000)
|
|
setTimeout(writeScr, 9001,
|
|
"CD-ROM Device Driver for IDE (Four Channels Supported)",
|
|
"(C)Copywrong Prof. Oak Technology Inc. 2024",
|
|
"Driver Version V340",
|
|
"Device Name: CANDYDEN",
|
|
"_")
|
|
setTimeout(writeScr, 16000, "No drives found, aborting instal")
|
|
|
|
setTimeout(clsScr, 18000)
|
|
setTimeout(writeScr, 18001, "CANDYDEB LOGIN: ")
|
|
setTimeout(type, 18550)
|
|
|
|
setTimeout(skipper, 22000)
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|