RES-9000
Retro Entertainment System - 9000 Series
"Where retro gaming meets AI generation"
RES-9000 is an authentic 8-bit game console built directly into Reddit posts. Users describe a game in natural language ("Make a platformer with coins and enemies"), and AI generates a complete, playable retro game in under 5 minutes — complete with sprites, music, and game logic.
PLAY • REMIX • CREATE
Join our developer community! Play games made by others, remix existing games to make them your own, or create entirely new ones from scratch with AI.
QUICK ACCESS
CORE FEATURES
AI Game Generation
"Make me a platformer!" -> Full playable game
OpenAI/Gemini async job-based generationQuickJS Sandbox
User games run safely in isolated environment
WASM-powered JavaScript executionRedis Leaderboards
Top 10 high scores per game
Persistent across sessionsDraft System
Save WIP games, version history
Job recovery & auto-saveAuto Screenshots
Server-side PNG generation
Perfect for Reddit post thumbnailsHOW IT WORKS
CONSOLE SPECS
DISPLAY
AUDIO
INPUT
SOUND SYSTEM DEMO
Click keys or press A S D F G H J K to play notes
SOUND DEFINITION
sounds: {
jump: {
type: "square",
notes: ["C4", "E4", "G4"],
duration: 0.1,
envelope: { attack: 0, decay: 0.05 }
},
coin: {
type: "triangle",
notes: ["E5", "G5"],
duration: 0.15
}
}SPRITE & TILE SYSTEM
SPRITE GRID (8×8 PIXELS)
PALETTE (4 COLORS MAX)
CODE DEFINITION
sprites: [ ["01100110", // Row 0 "12211221", // Row 1 "12222221", // Row 2 "12222221", // Row 3 "01222210", // Row 4 "00122100", // Row 5 "00011000", // Row 6 "00000000"] // Row 7 ]
ARCHITECTURE
KEY COMPONENTS
GAME PATTERN
function metadata() {
return {
title: "My Game",
description: "A fun retro game",
controls: ["arrows: move", "z: jump"]
};
}QUICK START
Click any command to copy