mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-09-14 08:29:32 +00:00
12 lines
112 B
Go
12 lines
112 B
Go
//go:build esp32 && !qemu
|
|
|
|
package runtime
|
|
|
|
import "device"
|
|
|
|
func abort() {
|
|
for {
|
|
device.Asm("waiti 0")
|
|
}
|
|
}
|