-
Notifications
You must be signed in to change notification settings - Fork 0
Project Overview
Retro Jack edited this page May 20, 2026
·
49 revisions
GenX-DOS is a static page that recreates a 1990s DOS prompt in the browser. Visitors land at a fake AMIBIOS POST screen, get dropped into a C:\> prompt, and navigate numbered menus to launch emulated games — all running locally in the page.
-
index.html— instant<meta refresh>toprompt/. The actual POST animation lives inside the prompt page. -
prompt/index.html— the DOS terminal. On load,init():- renders the AMIBIOS POST (AMI logo, Tseng video BIOS line, CPU/coprocessor/memory test with animated 0000 → 8064 KB count, six device-detection lines streamed at 500 ms each, footer with BIOS ID),
- pauses 5 s with the full POST on screen,
- clears, renders the System Configuration table,
- prints
Starting GenX-DOS . . .andType "help" <enter> for assistance., - calls
initTerminal()which wires up the keyboard and runsAUTOEXEC.BAT.
-
AUTOEXEC.BATrunsmenu— the rootmenu.batdoescd emulators\nmenu, dropping the user straight into the EMULATOR LAUNCHER. - The user types a number (or a command name) to navigate.
- Selecting a game opens the emulator in a new tab via
window.open.
- Pure HTML + JavaScript. No build step, no frameworks, no dependencies.
- Each visible character is its own
<div>styled with a CSS background-position into a 12×12 CP437 sprite sheet. - The virtual filesystem is a JS object tree (
prompt/javascript/fs.js). - 24 copied emulators live under
emulators/with bundled local games/discs/cartridges, driving 26 sub-systems — BBC Micro, Acorn Archimedes, NES, Sega Genesis, Atari 2600, Atari 7800, MS-DOS, MSX (MSX1/MSX2/MSX2+), GCE Vectrex, Atari ST, Sinclair Spectrum, Sinclair ZX81, Tandy CoCo, Atari 400 + Atari 800XL (same atari800 build), ColecoVision, Mattel Intellivision, Amstrad CPC, and the full Commodore VICE family — PET, VIC-20, MAX Machine, Commodore 64, C16, Plus/4, C128 (seven sub-systems off five VICE libretro cores: xpet, xvic, x64, xplus4, x128 — c64+max share x64, c16+plus4 share xplus4). The seven VICE bundles and the Coleco bundle share one copy of the EmulatorJS framework viaemulators/_shared-ejs/. Intellivision stands alone — jzIntv compiled to WASM, with a custom emscripten loader (no EmulatorJS core for it). See Emulators.