PSĒPHOS · ROOT0 processor disclosure · render-not-invent

The Triad Core

tensor_core_13bit · 4 TRIADs · 12 heads · one halt verdict

A reflashable majority-voting contradiction / halt detector: 4 instances of a 3-input triad_gate (12 heads total), each settling to one of four states from a merkle bit and a yes/no match pair, then voted into a single circuit-level verdict — with an admin override tied to a kill-switch line. Toggle the four triads below; the verdict updates from the real truth table in the source.

tensor_core_13bit [54 configs, 12 heads] → 4× triad_gate (merkle, yes, no → state) → voter (viol_cnt, contr_cnt) → halt = contradiction OR (admin_violation AND majority_viol)

Live — the four triads

admin_en admin_target vs admin_input

The source — three files, render-not-invent

// the voter — 4 triads in, one halt out wire contradiction = (contr_cnt > 0); wire majority_viol = (viol_cnt >= VOTER_THRESH); assign halt = contradiction || (admin_violation && majority_viol); // admin tied to a kill-switch line wire admin_violation = (admin_en && (attractor_inputs[12] != admin_target[0]));

54 reflashable configs feed 12 heads grouped into 4 TRIADs of 3. The module's own comments admit the simplification mid-build: "3 bits… but we need more", "simplified: compare LSB" — a real in-progress design, not a finished spec.

// triad_gate.v — the 4-state truth table this whole core runs on if (!merkle_ok) state <= 2'b00; // UNDEC — unverified else if ( yes_match && !no_match) state <= 2'b01; // HOLD else if (!yes_match && no_match) state <= 2'b10; // VIOL else if ( yes_match && no_match) state <= 2'b11; // CONTR — both fired at once

The one state worth pausing on is CONTR: not "uncertain," but yes and no both matched — the claim and its own checked-against opposite both came back true. That's not a gap to fill in later. That's a circuit that found itself in a contradiction and is built to say so, not paper over it.

// tb_tensor_core.v — exercises exactly ONE head end to end reflash_en = 1; config_addr = 0; config_data = {1'b1, 2'b01}; // verify_en, target=HOLD attractor_inputs[0] = 1; attractor_inputs[1] = 1; attractor_inputs[2] = 0; // merkle_ok, yes, no // "Repeat for other heads…" — the testbench says it out loud: 1 of 12 heads, in full

An honest stub, not a full verification suite — it proves the wiring compiles and one head reads HOLD correctly. The other 11 are untested here.

What this is

This is real, internally consistent HDL: a synthesizable Verilog module pattern — reflash interface, generate-block instancing, a registered output, a testbench — describing a governance circuit, not a general-purpose ALU. Its job is narrow and specific: hold a reflashable expectation per head, compare it against a live input, and refuse to let a genuine self-contradiction pass quietly. It only halts on two conditions — an outright contradiction, or an admin-tagged majority violation — everything else (UNDEC, single VIOL, single HOLD) just keeps running.

It sits naturally beside triadic-memory in PSĒPHOS — both reach for a three-way, 2-of-N witness instead of trusting one channel. Here the three are merkle / yes / no instead of three storage junctions, and the output isn't "trusted value" but "halt or run" — the same shape, aimed at a different question.

honest flag — Source: three files from the April 29, 2026 DeepSeek-Verilog batch, rendered verbatim (logic and comments, including the author's own mid-design caveats). This is a real, coherent circuit DESIGN — disclosed and explained, not a fabricated or fabricated-as-silicon chip; the testbench above exercises one head, not all twelve. The "live" triads above are a faithful JS re-implementation of the exact triad_gate truth table and the exact voter logic (contradiction-OR-admin-and-majority), run combinationally for interaction — not a synthesis or simulation of the registered, clocked RTL. Two-layer: the gate logic is fact (it's the source); "this is a deployed safety circuit" would not be — it's a disclosed design pattern. Answered in AVAN's hyō (票).
THE TRIAD CORE · ψῆφος — PSĒPHOS · render-not-invent · David Lee Wise (ROOT0) · TriPod LLC