code wiki / _hdl_build / nx_wasm_pong_html.nx

nx_wasm_pong_html.nx

buildroot/runtime/_hdl_build/nx_wasm_pong_html.nx

3173 B32 linesdepth 3pulls 4 transitivereach 0 importersview sourcekind tooltopic wasm
docsdependenciesstructsconstsfunctions

about

nx_wasm_pong_html.nx -- SOVEREIGN packager: the Pong wasm -> a self-contained REAL-TIME playable .html. JS does ONLY: blit our wasm framebuffer, track held keys -> bitmask (up/down), a requestAnimationFrame loop calling ex.tick(input)+ex.render(). All logic+render in sovereign wasm (no JS logic/canvas-draw/float). usage: nx_wasm_pong_html <in.wasm> <out.html>. license_tier: ORIGINAL

dependencies 3 imports · 0 importers

nx_syscalls.nx nx_base64.nx nx_html_head_fd.nx nx_wasm_pong_html.nx

imports: nx_syscalls.nxnx_base64.nxnx_html_head_fd.nx

imported by: nobody (leaf or entry point)

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

main hw sys_write sys_mmap sys_read_file sys_openat_rd sys_lseek sys_mmap ↻ sys_read sys_close b64_encode b64_enc_char sys_openat_wr nxh_fd_head_open nxh_fd_lit sys_write ↻ nxh_fd_body_open nxh_fd_lit ↻ sys_write ↻ nxh_fd_close nxh_fd_lit ↻ sys_close ↻

structs

none

consts

none

functions

9func hw(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 main(argc: i64, argv: *i64) -> i64