test: run ESP32 programs in QEMU

This commit is contained in:
Jake Bailey
2026-08-10 11:22:49 -07:00
committed by Ron Evans
parent 1991b00395
commit 1958d6ff9d
10 changed files with 93 additions and 12 deletions
+11
View File
@@ -0,0 +1,11 @@
//go:build esp32 && !qemu
package runtime
import "device"
func abort() {
for {
device.Asm("waiti 0")
}
}