code wiki / _hdl_build / nx_property_registry_gate.nx
nx_property_registry_gate.nx
buildroot/runtime/_hdl_build/nx_property_registry_gate.nx
about
nx_property_registry_gate.nx -- gate the platform PROPERTY REGISTRY: data-driven domain->port, multi-domain
businesses rolling up to one backend, default fallthrough, comments. license_tier: ORIGINAL expect_exit: 0
dependencies 3 imports · 0 importers
imports: nx_syscalls.nxnx_property_registry.nxnx_gate_verdict.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
| 7 | func g_puts(s: *u8) -> i64 { var n: i64=0; while s[n]!=(0 as u8){n=n+1} sys_write(1,s,n); return 0 } |
| 8 | func g_slen(s: *u8) -> i64 { var n: i64=0; while s[n]!=(0 as u8){n=n+1} return n } called by 1: main |
| 9 | func g_check(name: *u8, cond: i64) -> i64 { if cond==1 { g_puts(" ok " as *u8); g_puts(name); g_puts("\n" as *u8); return 0 } g_puts(" FAIL " as *u8); g_puts(name); g_puts("\n" as *u8); return 1 } |
| 11 | func main() -> i64 |