xtensa zig flake

This commit is contained in:
Priec
2026-02-24 01:00:33 +01:00
parent fe4af063e0
commit 8082994802
3 changed files with 41 additions and 9 deletions

6
test.zig Normal file
View File

@@ -0,0 +1,6 @@
export fn main() void {
var i: u32 = 0;
while (i < 10) : (i += 1) {
asm volatile ("nop");
}
}