Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
BRIK64 PCD examples.
PC order_gate { fn order_gate(amount, limit) { if (amount <= 0) { return 0; } if (limit <= 0) { return 0; } if (amount > limit) { return 0; } return 1; } }
PC add8_gate { fn add8_gate(a: i64, b: i64) -> i64 { return MC_00.ADD8(a, b); } }