tinygo/src/runtime/runtime_stm32.go
2022-12-19 23:20:11 +01:00

18 строки
185 Б
Go

//go:build stm32
package runtime
import "device/arm"
type timeUnit int64
//export Reset_Handler
func main() {
preinit()
run()
exit(0)
}
func waitForEvents() {
arm.Asm("wfe")
}