Download Game! Currently 53 players and visitors. Last logged in:ArasakaMahjongZenickRauskis

Blitzer's Blog >> 72204

Back to blogs index
Posted: 08 Sep 2026 08:58 [ permalink ]
2. Run the Teleportation Payload
Reload the page and paste this specific JSON sequence into the text area.

This program originates on Node 1, sets a register, writes to Node 1's memory,
teleports itself to Node 2, writes to Node 2's memory, and finally teleports
back to Node 1 to halt.

JSON
[
    {"opcode": "LOADI", "gas": 1, "operandA": "0xAA", "operandB": 0},
    {"opcode": "STORE", "gas": 5, "operandA": "0x0000000100000001",
"operandB": 0},
    {"opcode": "TELEPORT", "gas": 5, "operandA": "0x0000000200000000",
"operandB": 0},
    {"opcode": "LOADI", "gas": 1, "operandA": "0xBB", "operandB": 1},
    {"opcode": "STORE", "gas": 5, "operandA": "0x0000000200000002",
"operandB": 1},
    {"opcode": "TELEPORT", "gas": 5, "operandA": "0x0000000100000000",
"operandB": 0},
    {"opcode": "HALT", "gas": 1, "operandA": "0x0", "operandB": 0}
]
Click Run and check the output panes. You should see distinct logs showing
Node 1 freezing, Node 2 taking the state (with R0=AA intact!) and writing to
its own memory space, before passing custody back to Node 1.