code wiki / (root) / nx_visual_novel_test.nx

nx_visual_novel_test.nx

buildroot/runtime/nx_visual_novel_test.nx

4674 B118 linesdepth 3pulls 3 transitivereach 0 importersview sourcekind gate/prooftopic visual
docsdependenciesstructsconstsfunctions

about

nx_visual_novel_test.nx -- VN0 KAT: the engine's ops, branching, vars, determinism, and chaos-user invariants, against the demo story whose pc layout is FIXED (asserted here). Exit = failing assertion number; 0 + marker = green. license_tier: ORIGINAL

dependencies 2 imports · 0 importers

nx_syscalls.nx nx_visual_novel.nx nx_visual_novel_test.nx

imports: nx_syscalls.nxnx_visual_novel.nx

imported by: nobody (leaf or entry point)

structs

none

consts

none

functions

9func vt_puts(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(1, s, n); return 0 }
11func vt_fresh() -> *i64 { return nx_vn_init() }
13func main() -> i64