FPGA Synthesis and Hardware Deployment for Trinity β T27 VM, openxc7-synth, and ternary computing on FPGAs.
src/tvc/β Ternary Vector Computing VM, JIT, indexer, RAGfpga/β Hardware synthesis, flash scripts, guides
DSLogic Plus, Artix-7, Kintex-7, ESP32
MIT Β© 2026 Trinity Project
Trinity is an orchestrator connecting a family of focused micro-repositories. Each repo has a single responsibility and can be used independently.
t27 β SSOT: Ternary specs + Rust bootstrap compiler
β
zig-golden-float β Numerical core: GF16, TF3, JIT, VM
β
zig-sacred-geometry β Sacred geometry: Ο-attention, Beal
zig-physics β Quantum: QCD, gravity, dark matter, baryogenesis
zig-hdc β Hyperdimensional: VSA, Sequence HDC
zig-knowledge-graph β Knowledge Graph: server + CLI
trinity-training β HSLM ML: benchmarks, datasets (208MB)
β
zig-agents β Agents: MCP, autonomous (~519KB)
zig-crypto-mining β BTC mining + DePIN (~60KB)
β
trinity β Orchestrator (links all via build.zig.zon)
| # | Repository | Status | Size | Description |
|---|---|---|---|---|
| 1 | t27 | β LIVE | 577+ specs | Ternary SSOT + Rust bootstrap |
| 2 | zig-golden-float | β LIVE | ~1MB | Numerical core: GF16, TF3, JIT, VM |
| 3 | zig-hdc | β LIVE | 352KB | VSA, HRR, hyperdimensional computing |
| 4 | zig-sacred-geometry | β LIVE | 58KB | Sacred Ο-geometry, Beal, sacred constants |
| 5 | zig-physics | β LIVE | 36KB (src) | Quantum: QCD, gravity, dark matter |
| 6 | zig-knowledge-graph | β LIVE | ~100KB | KG server + CLI |
| 7 | zig-agents | β LIVE | ~519KB (src!) | Agents, MCP, autonomous |
| 8 | zig-crypto-mining | β LIVE | ~60KB | BTC mining + DePIN |
| 9 | trinity-training | β LIVE | 208MB data | HSLM, benchmarks, datasets |
| 10 | trinity | β LIVE | ~500MB | Orchestrator, API, CLI, VIBEE, FPGA |
Phase 1 β HIGH Priority: β Complete
- zig-golden-float β Cloned as submodule in trinity-training
- zig-knowledge-graph β Extracted from trinity
- zig-crypto-mining β Extracted from trinity
- zig-physics β Extracted from trinity
- zig-hdc β Extracted from trinity
- zig-agents β Extracted from trinity
- zig-sacred-geometry β Extracted from trinity
Phase 2 β MEDIUM Priority: π In Progress
- Firebird/BitNet β trinity-training
- DePIN/$TRI β zig-crypto-mining
- VIBEE compiler β t27
Phase 3 β LOW Priority: β³ Pending
- trinity-fpga β Create new repo
- trinity-cli β Unify TRI CLI
- trinity-www β Docsite
Each micro-repo is a standalone Zig package. To use any module independently:
```zig build.zig.zon`` β Clone and cache dependencies
Example: Using zig-golden-float from any repo ```// build.zig.zon .dependencies = .{ .zig_golden_float = .{ .url = "https://github.com/gHashTag/zig-golden-float/archive/refs/heads/main.tar.gz", }, }, ``
```zig fetch --save https://github.com/gHashTag/zig-golden-float/archive/refs/heads/main.tar.gz`\`\`