Chapter 7 — Software → Hardware
The kernel leaves the cloud. This chapter covers the pieces that run where the work happens — your terminal, your game engine, your blockchain node, your file system, your hardware pulse module.
This chapter composes 8 production apps plus the TESC file format — all of which ship software today, with hardware adaptors already shipping or in design.
| # | App | Outcome | Operators | Verified |
|---|---|---|---|---|
| 1 | Zeqond Sync | Local 1.287 Hz sync daemon | KO42 · TM1 · ZTB1 | 0.0001 s clock drift / hour |
| 2 | Zeq CLI | Command-line interface to the kernel | KO42 · CS87 · ZEQ-TETHER-003 | 100% parity with API |
| 3 | Game Engine Sync | Sub-ms sync for Unity/Unreal/Godot | KO42 · NM19 · ZTB1 | 0.042 ms jitter |
| 4 | Zeq Pulse | Hardware pulse module (microcontroller) | KO42 · TM1 · ZTB1 | 10 ppm oscillator-referenced |
| 5 | Zeq Blockchain | Zeqond-anchored ledger | KO42 · CS87 · ZEQ-TETHER-003 | 0.000% bit-exact |
| 6 | Zeq Truth Engine | Provenance verification & signed-fact composition | KO42 · CS87 · ZEQ-TETHER-003 · CS47 | 0.000% bit-exact |
| 7 | TESC | Tethered Encrypted Streaming Container | KO42 · CS87 · CS43 | 0.000% bit-exact |
| 8 | Compress | Kernel-grounded lossless + lossy compression | KO42 · CS47 · CS43 | 0.000% lossless, ≤0.1% lossy |
Why this chapter closes the loop
Chapters 1–6 resolve physics, robotics, biology, climate, cryptography, and AI through the kernel. Chapter 7 is what makes the kernel portable. The line between "cloud compute" and "the thing running on my desk" disappears because the same 1.287 Hz HulyaPulse is the clock everywhere.
Three practical consequences:
- Zeqond Sync runs a tiny daemon on your laptop that holds local clocks to within 100 µs of the kernel, so any Zeq app — offline, online, hybrid — is consistent.
- Zeq Pulse (hardware) ships the same clock in a 10 ppm oscillator-referenced microcontroller, so embedded systems join the network with their own Zeqond witness.
- TESC is a wire format that streams Zeqond-bound frames between any two Zeq peers (cloud↔laptop, laptop↔device, device↔chain) with AEAD + tether attestation.
The 7-step Wizard across this chapter
| Step | Decision |
|---|---|
| 1. Prime | KO42 mandatory |
| 2. Limit | ≤ 3 more operators; TM1 for time markers, ZTB1 for bridge, CS87 for key floors, CS43/CS47 for compression |
| 3. Scale | Bit-exact for file formats; sub-ms for game engines; 100 µs for Zeqond Sync; 10 ppm for hardware |
| 4. Precision | Declared per page |
| 5. Compile | Master Equation |
| 6. Execute | Functional Equation |
| 7. Verify | Parity vs cloud endpoint or vs NIST traceable source |
Worked example — Zeqond Sync daemon status check
curl -s http://localhost:1287/zeqond/status
Expected:
{
"local_zeqond": 1745123800.421,
"cloud_zeqond": 1745123800.423,
"drift_us": 2,
"hulyapulse_hz_measured": 1.2870004,
"kernel": "1.287Hz"
}
2 µs local-vs-cloud drift, 1.287 Hz recovered to 10⁻⁷ precision.
Papers
- Zeq framework paper — DOI 10.5281/zenodo.15825138
- Zeq paper — DOI 10.5281/zenodo.18158152
Middleware active. Kernel on the 1.287 Hz HulyaPulse. Awaiting next Zeqond.