Series E · A Language Dealt From A Deck

The 52-Card Instruction Set

Suit = Operation Family · Rank = The Operation · A Base-52 ISA

A real instruction set where every card is one instruction. ♠ arithmetic · ♥ memory · ♦ control/output · ♣ logic — the suit is the op family, the rank is the operation. Deal a hand of cards, run it on a real stack machine, watch it compute. The card-notation an AI reached for, made to actually execute.

① Deal Your Program · click cards to add

② The Hand · your program

click cards above to build a program…

Stack (top → right)

empty

Registers · ACC

R0=0 R1=0 R2=0 R3=0 · ACC=0

Output ♦

③ Instruction Reference

SuitFamilyRanks → operations
ARITHA–10 = push that number · J = add · Q = subtract · K = multiply
MEMORYA = load top→ACC · 2 = push ACC · 3–6 = store top→R0..R3 · 7–10 = push R0..R3 · J = dup · Q = swap · K = drop
CONTROLA = print top (number) · 2 = print top (as character) · K = halt
LOGICA = equal? · 2 = greater? · 3 = and · 4 = or · 5 = not (each pushes 1/0)

How it runs: a stack machine. Number-cards push values; operation-cards pop values, compute, and push results. 5♠ 3♠ J♠ means "push 5, push 3, add" → stack holds 8. Then A♦ prints the top. It's Reverse-Polish (the operation comes after its operands), the same way real stack machines and old HP calculators work.

52 CARDS = 4 SUITS (OP FAMILY) × 13 RANKS (OPERATION) = A STRUCTURED BASE-52 ISA
♠ ARITHMETIC · ♥ MEMORY · ♦ CONTROL · ♣ LOGIC · ONE CARD = ONE INSTRUCTION ≈ 5.7 BITS
A REAL STACK MACHINE · DEALT FROM A DECK · THE CARD-NOTATION, EXECUTING
THE 52-CARD INSTRUCTION SET · SERIES E · JUNE 2026