code wiki / _hdl_build / nx_varfacts_gate.nx
nx_varfacts_gate.nx
buildroot/runtime/_hdl_build/nx_varfacts_gate.nx
about
nx_varfacts_gate.nx -- PROVE THE .var LANE READS THE MANIFEST, NEVER THE ASSETS, AND REFUSES
RATHER THAN UNDERCOUNTS. The fixture ZIP is hand-built from the published PKZIP layout (local
headers + central directory + EOCD), not by our writer -- cross-implementation discipline.
license_tier: ORIGINAL No hw writes (Rule 26).
dependencies 3 imports · 0 importers
imports: nx_syscalls.nxnx_gate_verdict.nxnx_varfacts_lib.nx
imported by: nobody (leaf or entry point)
call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown
structs
| none |
consts
| none |
functions
| 9 | func zg_u16(b: *u8, at: i64, v: i64) -> i64 { b[at] = (v & 0xff) as u8; b[at+1] = ((v >> 8) & 0xff) as u8; return at + 2 } |
| 10 | func zg_u32(b: *u8, at: i64, v: i64) -> i64 { b[at]=(v&0xff) as u8; b[at+1]=((v>>8)&0xff) as u8; b[at+2]=((v>>16)&0xff) as u8; b[at+3]=((v>>24)&0xff) as u8; return at + 4 } |
| 11 | func zg_s(b: *u8, at: i64, s: *u8) -> i64 { var i: i64 = 0; var p: i64 = at; while s[i] != (0 as u8) { b[p] = s[i]; p = p + 1; i = i + 1 } return p } |
| 12 | func zg_len(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } return n } |
| 15 | func zg_local(b: *u8, at: i64, name: *u8, body: *u8, blen: i64, method: i64, usize: i64, lhos: *i64, idx: i64) -> i64 |
| 35 | func zg_cd(b: *u8, at: i64, name: *u8, blen: i64, method: i64, usize: i64, lho: i64) -> i64 |
| 58 | func main(argc: i64, argv: *i64) -> i64 |