code wiki / _hdl_build / nx_dev_pipeline_test.nx
nx_dev_pipeline_test.nx
buildroot/runtime/_hdl_build/nx_dev_pipeline_test.nx
about
nx_dev_pipeline_test.nx -- walk the happy path + the full research-escalation loop, prove no capability
conflation (Builder builds / Engineer tests), the SLA + Conductor watchdog, and emit knowledge/DEV_PIPELINE.md.
Exit 0 on 12/12. license_tier: ORIGINAL
dependencies 2 imports · 0 importers
imports: nx_dev_pipeline.nxnx_syscalls.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
| 8 | func dt_puts(s: *u8) -> i64 { var n: i64=0; while s[n]!=(0 as u8){n=n+1} sys_write(1,s,n); return 0 } |
| 9 | func dt_arrow(s: *u8) -> i64 { dt_puts(s); dt_puts(" -> " as *u8); return 0 } |
| 10 | func dt_w(fd: i64, s: *u8) -> i64 { var n: i64=0; while s[n]!=(0 as u8){n=n+1} sys_write(fd,s,n); return 0 } |
| 12 | func main() -> i64 |