code wiki / (root) / nx_synth_page.nx

nx_synth_page.nx

buildroot/runtime/nx_synth_page.nx

18056 B135 linesdepth 2pulls 2 transitivereach 0 importersview sourcekind tooltopic synth
docsdependenciesstructsconstsfunctions

about

nx_synth_page.nx -- EMITS the /synth lab page (author-by-organ: the HTML is generated, never hand-shipped). nishifamily.com/synth = the synthetic-humans & creatures lab: the motion-on-demand clips (mannequin + skinned SDF body APNGs), the swap-slot bestiary contact sheet, the critic scorecard, and the honest census standing. Assets referenced RELATIVE (wave.png / wave_photo.png / pioneer.png / variants.png live next to index.html). Static, no JavaScript (APNG autoplays in <img>). Writes knowledge/synth.html; deploy = send to sites/nishifamily/synth/. license_tier: ORIGINAL expect_exit: 0

dependencies 1 imports · 0 importers

nx_syscalls.nx nx_synth_page.nx

imports: nx_syscalls.nx

imported by: nobody (leaf or entry point)

call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown

main sys_openat_wr sw sys_write sys_exit pb sys_mmap sys_write ↻ pw sys_write ↻ sys_close sys_mmap ↻ sys_read_file sys_openat_rd sys_lseek sys_mmap ↻ sys_read sys_close ↻ swn sys_write ↻ sys_mmap ↻

structs

none

consts

8const K_MAGIC_3000: i64 = 3000

functions

10func pw(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 }
called by 1: main calls 1: sys_write
11func pb(fd: i64, c: i64) -> i64 { let b: *u8 = sys_mmap(1); b[0] = c as u8; sys_write(fd, b, 1); return 0 }
called by 1: main calls 2: sys_mmapsys_write
12func sw(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(1, s, n); return 0 }
called by 1: main calls 1: sys_write
13func swn(v: i64) -> i64
called by 1: main calls 2: sys_writesys_mmap
23func main() -> i64