DiskOS V1.8

A BROWSER-BASED RETRO OPERATING SYSTEM & GAME ENGINE BY P1 CREATIONS

Launch OS Read Docs on GitHub

.diskCODE

Write standard BASIC-style syntax directly in the browser terminal. Build logic, handle variables, draw sprites, and synthesize audio with zero external tools.

.diskGUI Theming

DiskOS isn't locked into amber and black. Inject CSS-like scripts to instantly flip the OS colors, typography, CRT scanlines, and build custom terminal menus.

.diskPAD Controllers

Building a mobile game? Compile pre-built D-Pads or design entirely custom touch-buttons that automatically map to your code's keyboard logic.

Virtual File System

Save code, themes, and gamepads directly to your browser's local storage. Mount virtual directories or download a compiled `.diskROM` cartridge to share.

Boot Up & Build

DiskOS boots instantly. Everything happens inside the command line. You can write your code line-by-line, or type ---- to enter Raw Mode for pasting large scripts.


Ready to see it in action? Launch the OS, type the code in the terminal window, and press Enter to see it run.

SYS_MEM: DEMO_BOOT.diskCODE
10 CLEAR_SCR
20 PRINT "HELLO WORLD"
30 DRAW_BOX 10 10 20 5 BLUE
40 BEEP 440 200

RUN
HELLO WORLD
READY.
_