_offc_la_repro.nx source
↩ module page · 11 lines · 310 B
1// Minimal repro for the .Lg79 / la-pass-2 nxasm failure.
2// Exercises hw_event_emit which (transitively) triggers _hw_ring_init
3// which contains the failing `la t4, .Lg79` reference.
4
5import "syscalls.nx"
6import "nx_hw.nx"
7
8func main() -> i64 {
9 hw_event_emit(HW_SYSCALL, 64, 1)
10 return 0
11}